blob: f3606cbe85b24e9278cbcf132d6744d6531ebcbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}
|