contrib/fluidsynth/Pkgfile

24 lines
664 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: A real-time software synthesizer.
2021-02-01 12:04:19 +01:00
# URL: https://www.fluidsynth.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
2022-01-03 14:38:23 +01:00
# Depends on: glib
# Optional: jack-audio-connection-kit
2006-11-14 00:01:22 +01:00
name=fluidsynth
2023-09-25 17:26:41 +02:00
version=2.3.4
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() {
2022-01-03 14:38:23 +01:00
cmake -S $name-$version -B build -G Ninja \
2020-11-08 12:07:05 +01:00
-D CMAKE_INSTALL_PREFIX=/usr \
2022-09-24 14:26:42 +02:00
-D CMAKE_INSTALL_LIBDIR=lib \
2020-11-08 12:07:05 +01:00
-D CMAKE_BUILD_TYPE=Release \
2020-12-07 00:53:07 +01:00
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
2020-11-08 12:07:05 +01:00
-D LIB_SUFFIX= \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
2006-11-14 00:01:22 +01:00
}