diff options
Diffstat (limited to 'extra/lv2core')
-rw-r--r-- | extra/lv2core/PKGBUILD | 34 | ||||
-rw-r--r-- | extra/lv2core/lv2core.changelog | 16 | ||||
-rw-r--r-- | extra/lv2core/lv2core.install | 14 |
3 files changed, 64 insertions, 0 deletions
diff --git a/extra/lv2core/PKGBUILD b/extra/lv2core/PKGBUILD new file mode 100644 index 000000000..d483ab952 --- /dev/null +++ b/extra/lv2core/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 116670 2011-03-24 20:31:38Z schiv $ +# Maintainer: Ray Rashif <schiv@archlinux.org> + +pkgname=lv2core +pkgver=4.0 +pkgrel=1 +pkgdesc="LV2: Successor to the LADSPA audio plug-in standard" +url="http://lv2plug.in/" +license=('LGPL' 'custom') +arch=('i686' 'x86_64') +makedepends=('python2') +provides=('lv2') +changelog=$pkgname.changelog +install=$pkgname.install +source=(http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2) +md5sums=('5097d964f3559a1ecec2d2fc822ef53a') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf configure --prefix=/usr + python2 waf build $MAKEFLAGS +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf install --destdir="$pkgdir" + + install -Dm0644 COPYING \ + "$pkgdir/usr/share/licenses/$pkgname/COPYING" +} + +# vim:set ts=2 sw=2 et: diff --git a/extra/lv2core/lv2core.changelog b/extra/lv2core/lv2core.changelog new file mode 100644 index 000000000..618e5921f --- /dev/null +++ b/extra/lv2core/lv2core.changelog @@ -0,0 +1,16 @@ +25 Mar 2011 (GMT+8) Ray Rashif <schiv@archlinux.org> + + * 4.0-1 : + Upstream release + +9 Aug 2010 (GMT+8) Ray Rashif <schiv@archlinux.org> + + * 3.0-1 : + Brought into extra from community for slv2/ardour + - dep of slv2 + + * PKGBUILD : + Minor cosmetic ammendments. + + * lv2core.changelog : + Added this changelog. diff --git a/extra/lv2core/lv2core.install b/extra/lv2core/lv2core.install new file mode 100644 index 000000000..6a9fdf33b --- /dev/null +++ b/extra/lv2core/lv2core.install @@ -0,0 +1,14 @@ +post_install() { + \ldconfig + \lv2config +} + +post_upgrade() { + post_install +} + +post_remove() { + \ldconfig +} + +# vim:set ts=2 sw=2 et: |