blob: b4aca67444b180dceffc250930401ead45b77779 (
plain)
1 # Description: A C library interface to the LV2 plug-in standard,
2 # URL: https://drobilla.net/software/lilv.html
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: sratom swig
5
6 name=lilv
7 version=0.24.20
8 release=1
9 source=(https://download.drobilla.net/$name-$version.tar.xz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --buildtype=plain \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true
18
19 meson compile -C build
20 DESTDIR=$PKG meson install -C build
21 }
|