21 lines
545 B
Plaintext
21 lines
545 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.0.5
|
|
release=1
|
|
source=(https://github.com/FluidSynth/fluidsynth/archive/v$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
|
|
}
|