contrib/fluidsynth/Pkgfile

21 lines
545 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: A real-time software synthesizer.
2008-04-13 20:58:45 +02:00
# URL: http://www.fluidsynth.org/
# Maintainer: Jan-Michael Franz, jmf at mesecons dot net
2008-05-26 09:47:54 +02:00
# Packager: Olle Gustafsson, ogg at linux dot se
2018-03-04 10:39:58 +01:00
# Depends on: cmake glib
# Nice to have: jack-audio-connection-kit
2006-11-14 00:01:22 +01:00
name=fluidsynth
2019-02-24 17:28:09 +01:00
version=2.0.4
2006-11-14 00:01:22 +01:00
release=1
source=(https://github.com/FluidSynth/fluidsynth/archive/v$version.tar.gz)
2006-11-14 00:01:22 +01:00
build() {
2008-04-13 20:58:45 +02:00
cd $name-$version
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DLIB_SUFFIX= -DCMAKE_BUILD_TYPE=Release
2008-04-13 20:58:45 +02:00
make
make DESTDIR=$PKG install
2006-11-14 00:01:22 +01:00
}