mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=lilv
|
|
pkgver=0.24.20
|
|
pkgrel=1
|
|
pkgdesc="C library for simpler use of LV2 plugins"
|
|
url="https://drobilla.net/software/lilv"
|
|
arch="all"
|
|
license="ISC"
|
|
makedepends="
|
|
libsndfile-dev
|
|
lv2-dev
|
|
meson
|
|
serd-dev
|
|
sord-dev
|
|
sratom-dev
|
|
"
|
|
subpackages="$pkgname-dev $pkgname-doc $pkgname-bash-completion"
|
|
source="https://download.drobilla.net/lilv-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
abuild-meson -Db_lto=true . output
|
|
meson compile -C output
|
|
}
|
|
|
|
check() {
|
|
meson test --print-errorlogs --no-rebuild -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
mkdir -p "$pkgdir"/usr/share/bash-completion/completions
|
|
mv "$pkgdir"/etc/bash_completion.d/lilv \
|
|
"$pkgdir"/usr/share/bash-completion/completions/
|
|
rmdir "$pkgdir"/etc/bash_completion.d
|
|
}
|
|
|
|
sha512sums="
|
|
68963b66fd6e577280867fcd5a601fd2cf539a10fcf0b667c22165cc7e42206fd6a20d56dbe97b587fb68f798d4db3b2351b87b1243c665c3a2b1bb82cbbf9a3 lilv-0.24.20.tar.xz
|
|
"
|