diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-14 11:07:02 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-02-14 11:07:02 (GMT) |
commit | a1f1b06ebbe1fa0c63f21480ea5504e6f4dbebd7 (patch) | |
tree | 2b288f8bdeb41a2ce218a536a13efbcb8db30d00 /abs/extra-testing/swh-plugins | |
parent | 9e3255d1a99f826d856061c25715d5341c28a119 (diff) | |
download | linhes_pkgbuild-a1f1b06ebbe1fa0c63f21480ea5504e6f4dbebd7.zip linhes_pkgbuild-a1f1b06ebbe1fa0c63f21480ea5504e6f4dbebd7.tar.gz linhes_pkgbuild-a1f1b06ebbe1fa0c63f21480ea5504e6f4dbebd7.tar.bz2 |
For volume leveling.
Diffstat (limited to 'abs/extra-testing/swh-plugins')
-rw-r--r-- | abs/extra-testing/swh-plugins/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/abs/extra-testing/swh-plugins/PKGBUILD b/abs/extra-testing/swh-plugins/PKGBUILD new file mode 100644 index 0000000..69157a1 --- /dev/null +++ b/abs/extra-testing/swh-plugins/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 8773 2008-08-16 05:51:00Z eric $ +#Maintainer: Damir Perisa <damir.perisa@bluewin.ch> +#Contributor: Robert Emil Berge + +pkgname=swh-plugins +pkgver=0.4.15 +pkgrel=1 +pkgdesc="LADSPA Plugin-Collection from plugin.org.uk" +arch=(i686 x86_64) +url="http://plugin.org.uk/" +depends=('fftw' 'ladspa') +groups=('ladspa-plugins') +source=(http://plugin.org.uk/releases/$pkgver/$pkgname-$pkgver.tar.gz) +md5sums=('2fbdccef2462ea553901acd429fa3573') + +build() { + cd $startdir/src/$pkgname-$pkgver + +#Arch64 fix, -fPIC seems to be the only option +if [ "$CARCH" = "x86_64" ]; then + export CFLAGS="$CFLAGS -fPIC" + export CXXFLAGS="$CFLAGS" +fi + + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install +} |