From eba4cc0886e4feeea65f6620243239f43d7caf04 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Mon, 30 Nov 2020 00:56:03 +0000 Subject: [PATCH] community/a2jmidid to 9-3 --- community/a2jmidid/PKGBUILD | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/community/a2jmidid/PKGBUILD b/community/a2jmidid/PKGBUILD index 46e8946b8..f9b23a10c 100644 --- a/community/a2jmidid/PKGBUILD +++ b/community/a2jmidid/PKGBUILD @@ -1,32 +1,43 @@ -# Maintainer: David Runge +# Maintainer: David Runge # Contributor: speps # Contributor: Jiyunatori # ALARM: Kevin Mihelich -# - use arch-meson to capture defaults (like disabled LTO) +# - set b_lto=false pkgname=a2jmidid pkgver=9 -pkgrel=2 +pkgrel=3 pkgdesc="A daemon for exposing legacy ALSA sequencer applications in JACK MIDI system." arch=('x86_64') url="https://github.com/linuxaudio/a2jmidid" license=('GPL2') groups=('pro-audio') arch=('x86_64') -depends=('jack' 'dbus') -makedepends=('meson') -optdepends=('python-dbus: for a2j and a2j_control') +depends=('glibc') +makedepends=('alsa-lib' 'dbus' 'jack' 'meson') +optdepends=( + 'bash: for a2j' + 'python-dbus: for a2j and a2j_control') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxaudio/${pkgname}/archive/${pkgver}.tar.gz") sha512sums=('5bd13b6904ed68c5bfe40ca516fd49b7eb4d4a946b9908ee04687265848734c8e1a81579f0f1a5bd0752595be8858dc748da10487b7f366394c09a5ffc7d5e5c') +b2sums=('ad079e76a54f56ee8f82150c306f91aead52f86632978ea6f3376a0bf163744379210b34701b39da4ee14fc4d8a1c6be82d1052abeb8ccf79410bc242d174d62') build() { cd "${pkgname}-${pkgver}" - arch-meson build + meson --prefix=/usr \ + --buildtype plain \ + --auto-features enabled \ + --wrap-mode nodownload \ + -D b_lto=false \ + -D b_pie=true \ + build ninja -C build } package() { + depends+=('libasound.so' 'libdbus-1.so' 'libjack.so') + cd "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" meson install -C build install -vDm 644 {AUTHORS,CHANGELOG,INSTALLATION,README}.rst \