[arch-commits] Commit in fluidsynth/repos (staging-x86_64 staging-x86_64/PKGBUILD)
David Runge
dvzrv at archlinux.org
Mon Jul 13 18:08:30 UTC 2020
Date: Monday, July 13, 2020 @ 18:08:30
Author: dvzrv
Revision: 391869
archrelease: copy trunk to staging-x86_64
Added:
fluidsynth/repos/staging-x86_64/
fluidsynth/repos/staging-x86_64/PKGBUILD
(from rev 391868, fluidsynth/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: fluidsynth/repos/staging-x86_64/PKGBUILD (from rev 391868, fluidsynth/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-07-13 18:08:30 UTC (rev 391869)
@@ -0,0 +1,55 @@
+# 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.4
+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' 'sdl2')
+makedepends=('alsa-lib' 'cmake' 'dbus' 'doxygen' 'glib2' '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=('22e8d2f8b144f96a334aff1f7d183b91e6c5418482bd61553028ff571836b0ca13fff89e7e3cc1c2d08e106a430331d179e607d78b00e218baec433b6d140190')
+b2sums=('068a8a1722036a5a409331b1bdcf566cb9a1e7b4a27c78adec51c6d82f7c53cba9178c87013f1a9c0ef62d26b1ba876fad567e4c8bb41b8d478632699876e41d')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_BUILD_TYPE='None' \
+ -DFLUID_DAEMON_ENV_FILE=/etc/conf.d/fluidsynth \
+ -Denable-ladspa=ON \
+ -Denable-portaudio=ON \
+ -DLIB_SUFFIX="" \
+ -Wno-dev \
+ -B build \
+ -S .
+ make -C build VERBOSE=1
+}
+
+check() {
+ cd "${pkgname}-${pkgver}"
+ make -C build -k check
+}
+
+package() {
+ depends+=('libasound.so' 'libdbus-1.so' 'libglib-2.0.so' 'libgmodule-2.0.so'
+ 'libgobject-2.0.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