summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Arndt2019-11-02 19:34:58 +0100
committerChristopher Arndt2019-11-02 19:34:58 +0100
commit618540db775e73b81b984fb9d4f71f4ec4c1385f (patch)
treeeba584a14a6ae3622aa87469f41fc8caa45d9218
parentbae9e6df76163b4794e7c4d95e44fd31abc3e960 (diff)
downloadaur-618540db775e73b81b984fb9d4f71f4ec4c1385f.tar.gz
Add workaround for error in upstream waf wscript
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 120d628b2773..b649130ae7d3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = lilv-git
pkgdesc = A C library interface to the LV2 plug-in standard with Python bindings (git version)
- pkgver = 0.24.5.r1240.7a7bff2
+ pkgver = 0.24.5.r1249.36e74a7
pkgrel = 1
url = http://drobilla.net/software/lilv
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index e911577ac3bc..99fd66f33fac 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
_pkgname=lilv
pkgname="${_pkgname}-git"
-pkgver=0.24.5.r1240.7a7bff2
+pkgver=0.24.5.r1249.36e74a7
pkgrel=1
pkgdesc="A C library interface to the LV2 plug-in standard with Python bindings (git version)"
arch=('i686' 'x86_64')
@@ -36,6 +36,10 @@ prepare() {
git submodule init
git config submodule.waflib.url "${srcdir}/autowaf"
git submodule update
+
+ # Ugly hack to fix pkgconfig file template
+ # https://github.com/drobilla/lilv/issues/30
+ sed -i -e 's/^Requires:.*/Requires: @LILV_PKG_DEPS@/' lilv.pc.in
}
check() {