2019-08-21 10:02:50 +00:00
|
|
|
# Description: A C library interface to the LV2 plug-in standard,
|
2021-10-22 18:39:59 +02:00
|
|
|
# URL: https://drobilla.net/software/lilv.html
|
2019-08-21 10:02:50 +00:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-04-23 00:46:38 +10:00
|
|
|
# Depends on: sratom swig
|
2019-08-21 10:02:50 +00:00
|
|
|
|
|
|
|
name=lilv
|
2022-08-14 22:26:40 +02:00
|
|
|
version=0.24.18
|
2019-11-14 23:03:56 +01:00
|
|
|
release=1
|
2022-07-23 19:06:48 +02:00
|
|
|
source=(https://download.drobilla.net/$name-$version.tar.xz)
|
2019-08-21 10:02:50 +00:00
|
|
|
|
|
|
|
build() {
|
2022-07-23 19:06:48 +02:00
|
|
|
meson setup $name-$version build \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true
|
2019-08-21 10:02:50 +00:00
|
|
|
|
2022-07-23 19:06:48 +02:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2019-08-21 10:02:50 +00:00
|
|
|
}
|