contrib/fluidsynth/Pkgfile

21 lines
560 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
2020-06-14 21:39:06 +02:00
version=2.1.3
2006-11-14 00:01:22 +01:00
release=1
2019-09-26 19:37:48 +02:00
source=(https://github.com/FluidSynth/fluidsynth/archive/v$version/$name-$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
}