[arch-commits] Commit in fluidsynth/repos/extra-x86_64 (PKGBUILD PKGBUILD)

David Runge dvzrv at archlinux.org
Thu Feb 20 15:14:36 UTC 2020


    Date: Thursday, February 20, 2020 @ 15:14:35
  Author: dvzrv
Revision: 375926

archrelease: copy trunk to extra-x86_64

Added:
  fluidsynth/repos/extra-x86_64/PKGBUILD
    (from rev 375925, fluidsynth/trunk/PKGBUILD)
Deleted:
  fluidsynth/repos/extra-x86_64/PKGBUILD

----------+
 PKGBUILD |  101 +++++++++++++++++++++++++++++++------------------------------
 1 file changed, 52 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-02-20 15:14:09 UTC (rev 375925)
+++ PKGBUILD	2020-02-20 15:14:35 UTC (rev 375926)
@@ -1,49 +0,0 @@
-# Maintainer: David Runge <dvzrv at archlinux.org>
-# Contributor: Ray Rashif <schiv at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-
-pkgname=fluidsynth
-pkgver=2.1.0
-pkgrel=1
-pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications"
-arch=('x86_64')
-url="http://www.fluidsynth.org/"
-license=('LGPL2.1')
-groups=('pro-audio')
-depends=('alsa-lib' 'glibc' 'glib2' 'libjack.so' 'libportaudio.so' 'libpulse'
-'libreadline.so' 'libsndfile' 'libsystemd.so' 'sdl2')
-makedepends=('cmake' 'ladspa' 'doxygen')
-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=('d7af4047ebde49ef48098ae9dbab5d90422a4536acf28a2de32d8da67a50ebbbcf30e06833b630bd54e441040be0e432b377e3b63bf666e63106e69cd408ea0d')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  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
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make -C build -k check
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make -C build DESTDIR="$pkgdir" install
-  # systemd user unit
-  install -vDm 644 "build/${pkgname}.service" \
-    -t "$pkgdir/usr/lib/systemd/user/"
-  # system-wide configuration file
-  install -vDm 644 "build/${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
-  # docs
-  install -vDm 644 {AUTHORS,ChangeLog,{CONTRIBUTING,README}.md,THANKS,TODO} \
-    -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: fluidsynth/repos/extra-x86_64/PKGBUILD (from rev 375925, fluidsynth/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-02-20 15:14:35 UTC (rev 375926)
@@ -0,0 +1,52 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+
+pkgname=fluidsynth
+pkgver=2.1.1
+pkgrel=1
+pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications"
+arch=('x86_64')
+url="http://www.fluidsynth.org/"
+license=('LGPL2.1')
+groups=('pro-audio')
+depends=('glibc' 'glib2' 'sdl2')
+makedepends=('alsa-lib' 'cmake' 'dbus' 'doxygen' 'jack' 'ladspa' 'libinstpatch'
+'libpulse' 'libsndfile' 'portaudio' 'readline' 'systemd-libs')
+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=('f8776c59aa0aa4a25fe3c38973c994e8608f8fad8a2e478db0d0232d4c787983dfdcba200c558cd810e892930b50184af4bc4a7f3c98ec5c38e147fd715e51b8')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  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
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make -C build -k check
+}
+
+package() {
+  depends+=('libasound.so' 'libdbus-1.so' 'libinstpatch-1.0.so' 'libjack.so'
+  'libportaudio.so' 'libpulse-simple.so' 'libreadline.so' 'libsndfile.so'
+  'libsystemd.so')
+  cd "${pkgname}-${pkgver}"
+  make -C build DESTDIR="$pkgdir" install
+  # systemd user unit
+  install -vDm 644 "build/${pkgname}.service" \
+    -t "$pkgdir/usr/lib/systemd/user/"
+  # system-wide configuration file
+  install -vDm 644 "build/${pkgname}.conf" "${pkgdir}/etc/conf.d/${pkgname}"
+  # docs
+  install -vDm 644 {AUTHORS,ChangeLog,{CONTRIBUTING,README}.md,THANKS,TODO} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



More information about the arch-commits mailing list