blob: d8779f58e0d9a3df332b788ea196569a00bc1915 (
plain)
1 # Description: A real-time software synthesizer.
2 # URL: http://www.fluidsynth.org/
3 # Maintainer: James Mills, prologic at shortcircuit dot net dot au
4 # Packager: Olle Gustafsson <ogg at linux dot se>
5 #
6 # Depends on:
7
8 name=fluidsynth
9 version=1.0.7a
10 release=1
11 source=(http://savannah.nongnu.org/download/fluid/$name-$version.tar.gz)
12
13 build() {
14 cd $name-1.0.7
15
16 ./configure \
17 --prefix=/usr \
18 --disable-nls
19
20 make && make DESTDIR=$PKG install
21 chown -R root:root $PKG
22 }
|