diff options
Diffstat (limited to 'repo/lv2/lv2.xibuild')
-rw-r--r-- | repo/lv2/lv2.xibuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/repo/lv2/lv2.xibuild b/repo/lv2/lv2.xibuild index 1ec3d7e..b932035 100644 --- a/repo/lv2/lv2.xibuild +++ b/repo/lv2/lv2.xibuild @@ -3,21 +3,23 @@ NAME="lv2" DESC="extensible open standard for audio plugins" -MAKEDEPS="python gtk2 libsndfile gcovr" +MAKEDEPS="gtk2 libsndfile gcovr" PKG_VER=1.18.10 -SOURCE="https://gitlab.com/lv2/lv2/-/archive/v$PKG_VER/lv2-v$PKG_VER.tar.gz" +SOURCE="https://lv2plug.in/spec/lv2-$PKG_VER.tar.xz" build() { - python3 waf configure --prefix=/usr -T - python3 waf build + meson --prefix=/usr \ + -Db_lto=true . output + meson compile -C output } check() { - python3 waf test + meson test --print-errorlogs --no-rebuild -C output } package() { - python3 waf install --destdir="$PKG_DEST" + DESTDIR="$PKG_DEST" meson install --no-rebuild -C output } + |