From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- extra/slv2/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ extra/slv2/slv2.changelog | 18 ++++++++++++++++++ extra/slv2/slv2.install | 14 ++++++++++++++ 3 files changed, 64 insertions(+) create mode 100644 extra/slv2/PKGBUILD create mode 100644 extra/slv2/slv2.changelog create mode 100644 extra/slv2/slv2.install (limited to 'extra/slv2') diff --git a/extra/slv2/PKGBUILD b/extra/slv2/PKGBUILD new file mode 100644 index 000000000..f83e988d2 --- /dev/null +++ b/extra/slv2/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 100618 2010-11-24 17:48:28Z schiv $ +# Maintainer: Ray Rashif +# Contributor: Leslie P. Polzer + +pkgname=slv2 +pkgver=0.6.6 +pkgrel=2 +pkgdesc="Library for LV2 hosts" +arch=('i686' 'x86_64') +url="http://drobilla.net/software/slv2" +license=('GPL') +depends=('redland' 'lv2core' 'jack') +makedepends=('python2') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2) +md5sums=('b8e8e0e82dd04324fcd533e8acd1ce85') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf configure --prefix=/usr + python2 waf build $MAKEFLAGS +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + python2 waf install --destdir="$pkgdir/" +} + +# vim:set ts=2 sw=2 et: diff --git a/extra/slv2/slv2.changelog b/extra/slv2/slv2.changelog new file mode 100644 index 000000000..e5be06200 --- /dev/null +++ b/extra/slv2/slv2.changelog @@ -0,0 +1,18 @@ +24 Nov 2010 (GMT+8) Ray Rashif + + * PKGBUILD : + Get rid of sed and use python2 directly for waf. + waf fix for python transition already included previously (unlogged). + Release only (no need binary update; no runtime python requirement). + +9 Aug 2010 (GMT+8) Ray Rashif + + * 0.6.6-2 : + Brought into extra from community for ardour + - adds "LV2" plug-ins support + + * PKGBUILD : + Minor cosmetic ammendments. + + * slv2.changelog : + Added this changelog. diff --git a/extra/slv2/slv2.install b/extra/slv2/slv2.install new file mode 100644 index 000000000..c980ddfab --- /dev/null +++ b/extra/slv2/slv2.install @@ -0,0 +1,14 @@ +post_install() { + echo "Updating Shared Library Links" + /sbin/ldconfig +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: -- cgit v1.2.3-54-g00ecf