contrib/fluidsynth/Pkgfile
2020-03-11 16:21:22 +01:00

21 lines
560 B
Plaintext

# Description: A real-time software synthesizer.
# URL: http://www.fluidsynth.org/
# Maintainer: Jan-Michael Franz, jmf at mesecons dot net
# Packager: Olle Gustafsson, ogg at linux dot se
# Depends on: cmake glib
# Nice to have: jack-audio-connection-kit
name=fluidsynth
version=2.1.1
release=1
source=(https://github.com/FluidSynth/fluidsynth/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DLIB_SUFFIX= -DCMAKE_BUILD_TYPE=Release
make
make DESTDIR=$PKG install
}