mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
community/a2jmidid to 9-3
This commit is contained in:
parent
47e2e8466c
commit
eba4cc0886
1 changed files with 18 additions and 7 deletions
|
@ -1,32 +1,43 @@
|
||||||
# Maintainer: David Runge <dave@sleepmap.de>
|
# Maintainer: David Runge <dvzrv@archlinux.org>
|
||||||
# Contributor: speps <speps at aur dot archlinux dot org>
|
# Contributor: speps <speps at aur dot archlinux dot org>
|
||||||
# Contributor: Jiyunatori <tori@0xc29.net>
|
# Contributor: Jiyunatori <tori@0xc29.net>
|
||||||
|
|
||||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
# - use arch-meson to capture defaults (like disabled LTO)
|
# - set b_lto=false
|
||||||
|
|
||||||
pkgname=a2jmidid
|
pkgname=a2jmidid
|
||||||
pkgver=9
|
pkgver=9
|
||||||
pkgrel=2
|
pkgrel=3
|
||||||
pkgdesc="A daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
|
pkgdesc="A daemon for exposing legacy ALSA sequencer applications in JACK MIDI system."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://github.com/linuxaudio/a2jmidid"
|
url="https://github.com/linuxaudio/a2jmidid"
|
||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
groups=('pro-audio')
|
groups=('pro-audio')
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
depends=('jack' 'dbus')
|
depends=('glibc')
|
||||||
makedepends=('meson')
|
makedepends=('alsa-lib' 'dbus' 'jack' 'meson')
|
||||||
optdepends=('python-dbus: for a2j and a2j_control')
|
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")
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/linuxaudio/${pkgname}/archive/${pkgver}.tar.gz")
|
||||||
sha512sums=('5bd13b6904ed68c5bfe40ca516fd49b7eb4d4a946b9908ee04687265848734c8e1a81579f0f1a5bd0752595be8858dc748da10487b7f366394c09a5ffc7d5e5c')
|
sha512sums=('5bd13b6904ed68c5bfe40ca516fd49b7eb4d4a946b9908ee04687265848734c8e1a81579f0f1a5bd0752595be8858dc748da10487b7f366394c09a5ffc7d5e5c')
|
||||||
|
b2sums=('ad079e76a54f56ee8f82150c306f91aead52f86632978ea6f3376a0bf163744379210b34701b39da4ee14fc4d8a1c6be82d1052abeb8ccf79410bc242d174d62')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${pkgname}-${pkgver}"
|
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
|
ninja -C build
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
|
depends+=('libasound.so' 'libdbus-1.so' 'libjack.so')
|
||||||
|
|
||||||
cd "${pkgname}-${pkgver}"
|
cd "${pkgname}-${pkgver}"
|
||||||
DESTDIR="${pkgdir}" meson install -C build
|
DESTDIR="${pkgdir}" meson install -C build
|
||||||
install -vDm 644 {AUTHORS,CHANGELOG,INSTALLATION,README}.rst \
|
install -vDm 644 {AUTHORS,CHANGELOG,INSTALLATION,README}.rst \
|
||||||
|
|
Loading…
Reference in a new issue