[arch-commits] Commit in lilv/trunk (PKGBUILD)

David Runge dvzrv at archlinux.org
Sun Jan 6 19:19:43 UTC 2019


    Date: Sunday, January 6, 2019 @ 19:19:42
  Author: dvzrv
Revision: 420737

upgpkg: lilv 0.24.4-2

Switching to python for waf script (working again). Adding libsndfile to optdepends (for lv2apply). Adding python bindings.

Modified:
  lilv/trunk/PKGBUILD

----------+
 PKGBUILD |   22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-01-06 18:59:21 UTC (rev 420736)
+++ PKGBUILD	2019-01-06 19:19:42 UTC (rev 420737)
@@ -4,14 +4,15 @@
 
 pkgname=lilv
 pkgver=0.24.4
-pkgrel=1
+pkgrel=2
 pkgdesc="A C library interface to the LV2 plug-in standard"
 arch=('x86_64')
 url="https://drobilla.net/software/lilv/"
 license=('custom:ISC')
 depends=('sratom' 'jack')
-makedepends=('swig' 'python2')
-optdepends=('bash-completion: completion for bash')
+makedepends=('swig' 'python')
+optdepends=('bash-completion: completion for bash'
+            'libsndfile: for lv2apply')
 source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.sig})
 sha512sums=('cb909c83dbac36b51a206fe508aec51e52ddf068f9a159d053888594402def8d140aae0d9e1e1866e722396f7ec8dea4b86d4c1b958f56eb3193b78307918a89'
             'SKIP')
@@ -25,21 +26,22 @@
 
 build() {
   cd "${pkgname}-${pkgver}"
-  python2 waf configure --prefix=/usr \
-                       --no-bash-completion \
-                       --dyn-manifest \
-                       --test
-  python2 waf build
+  python waf configure --prefix=/usr \
+                        --bindings \
+                        --no-bash-completion \
+                        --dyn-manifest \
+                        --test
+  python waf build
 }
 
 check() {
   cd "${pkgname}-${pkgver}"
-  python2 waf test
+  python waf test
 }
 
 package() {
   cd "${pkgname}-${pkgver}"
-  python2 waf install --destdir="${pkgdir}"
+  python waf install --destdir="${pkgdir}"
   # license
   install -vDm 644 COPYING \
     "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"



More information about the arch-commits mailing list