aboutsummaryrefslogtreecommitdiffstats
path: root/fluidsynth/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'fluidsynth/Pkgfile')
-rw-r--r--fluidsynth/Pkgfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/fluidsynth/Pkgfile b/fluidsynth/Pkgfile
new file mode 100644
index 0000000..31c2fae
--- /dev/null
+++ b/fluidsynth/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Synthétiseur logiciel temp-réel basé sur les spécifications SoundFont 2.
+# URL: http://www.fluidsynth.org/
+# Maintainer: piernov <piernov@piernov.org>
+# Packager: piernov <piernov@piernov.org>
+# Depends on: glib, pulseaudio, jack2, alsa-lib, dbus, libsndfile, cmake
+# Run on: glib,pulseaudio,jack2,alsa-lib,dbus,libsndfile
+
+name=fluidsynth
+version=1.1.5
+release=1
+source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE=Release \
+ -Denable-ladspa=OFF \
+ -DLIB_SUFFIX=""
+ make
+ make DESTDIR=$PKG install
+}