* update fluidsynth to 2.0.8

This commit is contained in:
Alexander Baldeck 2019-11-03 10:12:01 +01:00
parent 3bffc8c0ba
commit 026192ab18

View File

@ -1,23 +1,24 @@
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: David Runge <dave@sleepmap.de>
# Maintainer: David Runge <dvzrv@archlinux.org>
# Contributor: Ray Rashif <schiv@archlinux.org>
# Contributor: damir <damir@archlinux.org>
pkgname=fluidsynth
pkgver=2.0.7
pkgver=2.0.8
pkgrel=1
pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications"
arch=(x86_64 powerpc64le)
url="http://www.fluidsynth.org/"
license=('LGPL2.1')
groups=('pro-audio')
depends=('glib2' 'libpulse' 'portaudio')
depends=('alsa-lib' 'glibc' 'glib2' 'libjack.so' 'libportaudio.so' 'libpulse'
'libreadline.so' 'libsndfile' 'libsystemd.so')
makedepends=('cmake' 'ladspa' 'doxygen')
optdepends=('pulseaudio: PulseAudio sound support')
provides=('libfluidsynth.so' 'soundfont-synthesizer')
backup=("etc/conf.d/$pkgname")
source=("$pkgname-$pkgver.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/v$pkgver.tar.gz")
sha512sums=('c939c77277767541b90ae8bc24687cd9cd11b375264e6b5017658f5fd9c5637a3ce09bc4ad837a349e4a63883fe5ecbe80e65dd91d2cbf71072bcbcfc068614e')
sha512sums=('8fae05d909a66d0e68fe3f14b98608dca5375c7badcfbd131c1ebd0644eb7754fa75174a0c197c241917f40cde1d810459039e2d9f82d5fea7b080c2ea81bfbc')
prepare() {
cd "${pkgname}-${pkgver}"
@ -26,14 +27,12 @@ prepare() {
build() {
cd "${pkgname}-${pkgver}"
(
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
-Denable-ladspa=ON \
-Denable-portaudio=ON \
-DLIB_SUFFIX=""
)
cmake -DCMAKE_INSTALL_PREFIX=/usr \
-DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
-Denable-ladspa=ON \
-Denable-portaudio=ON \
-DLIB_SUFFIX="" \
-B build
make -C build VERBOSE=1
}