Date: Sunday, August 5, 2018 @ 20:19:36 Author: dvzrv Revision: 368424
Adding lv2file from the AUR. Added: lv2file/ lv2file/repos/ lv2file/trunk/ lv2file/trunk/PKGBUILD ----------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) Added: lv2file/trunk/PKGBUILD =================================================================== --- lv2file/trunk/PKGBUILD (rev 0) +++ lv2file/trunk/PKGBUILD 2018-08-05 20:19:36 UTC (rev 368424) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: David Runge <[email protected]> +# Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de> +pkgname=lv2file +pkgver=0.84 +pkgrel=2 +pkgdesc="A simple program which you can use to apply effects to your audio files" +arch=('x86_64') +url="https://github.com/jeremysalwen/lv2file" +license=('GPL3') +groups=('lv2-plugins' 'pro-audio') +depends=('argtable' 'lilv') +makedepends=('lv2') +# upstream didn't add the manpage to the release tarball: +# https://github.com/jeremysalwen/lv2file/issues/4 +source=("$pkgname-$pkgver.tar.gz::https://github.com/jeremysalwen/${pkgname}/archive/upstream/${pkgver}.tar.gz" + "https://raw.githubusercontent.com/jeremysalwen/${pkgname}/master/debian/${pkgname}.1") +sha512sums=('05ccc8a3a2c01a778f153640a4048365e78afc8f79fb76143500dadfec77b3861444163ead24ae2bc17681d8a6ecee6dcecbb57a1d7498219b315b6162a18420' + '5706801b35f4b3fb6888bd5952219453a0ae13f453f3e475984dfe15aa173e6277089102c128f2da753f8dd70da2da59e4ae6d6a9179c5d1c1565bcf80799af6') + +prepare() { + mv -v "$pkgname-upstream-$pkgver" "$pkgname-$pkgver" + cd "$pkgname-$pkgver" +} + +build() { + cd "$pkgname-$pkgver" + make all +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install + # man page + install -vDm 644 "../${pkgname}.1" -t "${pkgdir}/usr/share/man/man1/" + # docs + install -vDm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}/" +} Property changes on: lv2file/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
