diff options
Diffstat (limited to 'abs/extra-testing/community/fluidsynth/PKGBUILD')
-rw-r--r-- | abs/extra-testing/community/fluidsynth/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/abs/extra-testing/community/fluidsynth/PKGBUILD b/abs/extra-testing/community/fluidsynth/PKGBUILD new file mode 100644 index 0000000..f3606cb --- /dev/null +++ b/abs/extra-testing/community/fluidsynth/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: damir <damir@archlinux.org> + +pkgname=fluidsynth +pkgver=1.0.8 +origver=1.0.8 +pkgrel=1 +pkgdesc="FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications." +arch=("i686" "x86_64") +url="http://www.fluidsynth.org/" +depends=('jack-audio-connection-kit' 'ladspa') +options=('!libtool') +license=('LGPL') +source=("http://savannah.nongnu.org/download/fluid/$pkgname-$pkgver.tar.gz") +md5sums=('e2abfd2e69fd8b28d965df968d7d44ee') + + +build() { + cd $startdir/src/$pkgname-$origver + ./configure --prefix=/usr \ + --enable-ladspa + make || return 1 + make prefix=$startdir/pkg/usr install +} + |