[arch-commits] Commit in fluidsynth/trunk (PKGBUILD)

David Runge dvzrv at archlinux.org
Mon Oct 28 21:10:51 UTC 2019


    Date: Monday, October 28, 2019 @ 21:10:50
  Author: dvzrv
Revision: 365982

upgpkg: fluidsynth 2.0.8-1

Upgrading to 2.0.8. Updating maintainer info. Adding all direct library dependencies. Simplifying cmake call by providing build directory via flag.

Modified:
  fluidsynth/trunk/PKGBUILD

----------+
 PKGBUILD |   23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-10-28 18:50:18 UTC (rev 365981)
+++ PKGBUILD	2019-10-28 21:10:50 UTC (rev 365982)
@@ -1,9 +1,9 @@
-# Maintainer: David Runge <dave at sleepmap.de>
+# Maintainer: David Runge <dvzrv at archlinux.org>
 # Contributor: Ray Rashif <schiv at archlinux.org>
 # Contributor: damir <damir at 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')
@@ -10,13 +10,14 @@
 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'
+'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}"
@@ -25,14 +26,12 @@
 
 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
 }
 



More information about the arch-commits mailing list