diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 05:24:05 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 05:24:05 (GMT) |
commit | c70a79c1e2deec8d508f34776befe11dab701e49 (patch) | |
tree | e316035b1059e5e4c3985fa64e7a3fa98ad697db /abs/extra-testing/community/fluidsynth | |
parent | c7d4d0ec62e50c879908ab9f5e6b82c59124d338 (diff) | |
download | linhes_pkgbuild-c70a79c1e2deec8d508f34776befe11dab701e49.zip linhes_pkgbuild-c70a79c1e2deec8d508f34776befe11dab701e49.tar.gz linhes_pkgbuild-c70a79c1e2deec8d508f34776befe11dab701e49.tar.bz2 |
Adding missing PKGBUILDS, needed for VLC.
fluidsynth
libdvbpsi
libmatroska
libmodplug
libmpcded
libshout
libv4l
lua
zvbi
Diffstat (limited to 'abs/extra-testing/community/fluidsynth')
-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 +} + |