blob: b932035ee46b388448cfed18acde7ee0a9b58b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
NAME="lv2"
DESC="extensible open standard for audio plugins"
MAKEDEPS="gtk2 libsndfile gcovr"
PKG_VER=1.18.10
SOURCE="https://lv2plug.in/spec/lv2-$PKG_VER.tar.xz"
build() {
meson --prefix=/usr \
-Db_lto=true . output
meson compile -C output
}
check() {
meson test --print-errorlogs --no-rebuild -C output
}
package() {
DESTDIR="$PKG_DEST" meson install --no-rebuild -C output
}
|