# Maintainer in the AUR: Roboron _realname=fluidsynth pkgname=mingw-w64-fluidsynth pkgver=2.3.4 pkgrel=1 pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications (mingw-w64)" url="http://www.fluidsynth.org/" arch=('any') license=('LGPL') #depends=('mingw-w64-sdl2' 'mingw-w64-glib2') depends=('mingw-w64-sdl2' 'mingw-w64-glib2' 'mingw-w64-libsndfile' 'mingw-w64-portaudio' 'mingw-w64-readline') makedepends=('mingw-w64-cmake' 'mingw-w64-pkg-config' 'ninja') options=('staticlibs' '!buildflags' '!strip') source=("${_realname}-${pkgver}.tar.gz::https://github.com/FluidSynth/${_realname}/archive/v${pkgver}.tar.gz") sha256sums=('1529ef5bc3b9ef3adc2a7964505912f7305103e269e50cc0316f500b22053ac9') _architectures="i686-w64-mingw32 x86_64-w64-mingw32" build() { cd fluidsynth-$pkgver cflags_base=$CFLAGS for _arch in ${_architectures}; do mkdir -p build-${_arch} && pushd build-${_arch} export CFLAGS="$cflags_base" ${_arch}-cmake -G Ninja -S .. -B shared -DBUILD_SHARED_LIBS=1 -Denable-portaudio=1 -Denable-dbus=0 VERBOSE=1 cmake --build shared export CFLAGS="$cflags_base -DGLIB_STATIC_COMPILATION=1 -DGMODULE_STATIC_COMPILATION=1" ${_arch}-cmake -G Ninja -S .. -B static -DBUILD_SHARED_LIBS=0 -Denable-aufile=0 -Denable-dbus=0 -Denable-ipv6=0 -Denable-jack=0 -Denable-ladspa=0 -Denable-midishare=0 -Denable-opensles=0 -Denable-oboe=0 -Denable-oss=0 -Denable-readline=0 -Denable-winmidi=1 -Denable-waveout=0 -Denable-network=0 -Denable-pulseaudio=0 -Denable-dsound=0 -Denable-alsa=0 -Denable-libinstpatch=0 -Denable-portaudio=0 -Denable-wasapi=0 -Denable-openmp=1 -Denable-libsndfile=0 -Denable-sdl2=1 VERBOSE=1 cmake --build static popd done } package() { for _arch in ${_architectures}; do cd "$srcdir"/fluidsynth-${pkgver}/build-${_arch} DESTDIR="$pkgdir" cmake --install shared DESTDIR="$pkgdir" cmake --install static done }