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

David Runge dvzrv at gemini.archlinux.org
Tue Jun 7 18:41:55 UTC 2022


    Date: Tuesday, June 7, 2022 @ 18:41:55
  Author: dvzrv
Revision: 1228553

upgpkg: lilv 0.24.14-1: Upgrade to 0.24.14.

Remove unnecessary quotes and curly braces.
Add debug package.

Modified:
  lilv/trunk/PKGBUILD

----------+
 PKGBUILD |   38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-06-07 18:38:25 UTC (rev 1228552)
+++ PKGBUILD	2022-06-07 18:41:55 UTC (rev 1228553)
@@ -3,8 +3,8 @@
 # Contributor: speps <speps at aur dot archlinux dot org>
 
 pkgname=lilv
-pkgver=0.24.12
-pkgrel=4
+pkgver=0.24.14
+pkgrel=1
 pkgdesc="A C library interface to the LV2 plug-in standard"
 arch=(x86_64)
 url="https://drobilla.net/software/lilv/"
@@ -11,19 +11,22 @@
 license=(ISC)
 depends=(glibc lv2)
 makedepends=(libsndfile python serd sord sratom swig waf)
-optdepends=('bash-completion: completion for bash'
-            'libsndfile: for lv2apply'
-            'python: for Python bindings')
+optdepends=(
+  'bash-completion: completion for bash'
+  'libsndfile: for lv2apply'
+  'python: for Python bindings'
+)
 provides=(liblilv-0.so)
-source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.asc})
-sha512sums=('ea22db4e995792b62d60d793169c792549b8fb0255c2cf7a85780dd149811921e2fae5eaea0fb83465f01b14dfa66361af3be40bf7cb3733e98655b943f4faee'
+options=(debug)
+source=(https://download.drobilla.net/$pkgname-$pkgver.tar.bz2{,.sig})
+sha512sums=('f266e91f3cbc325c25dd7d08bde5033091cb3072c2dcb1490e9474f562b798dbc71c45ca7d971ed4dfd6bb16f5f6725ae242a58c4486684b71350e73f1469f47'
             'SKIP')
-b2sums=('47efe553c6fc249ed0cde47a47a01e0b3496ea4dfac88849b75d9720cb3a158fa1c95959ffc1a09e606f8ba3831e79382ba08ad100ee17cf19c7f1ffa186d6e2'
+b2sums=('bc84fe5a4bf34f88ea7f9c09cb3168186f7f0fd2f3f23b08f55100502d959fd74fe7e1c6d9307772b1983fbeedde100f75d6751e9bf92a9663aaaa115ca0770c'
         'SKIP')
 validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard <d at drobilla.net>
 
 prepare() {
-  cd "${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   # let wscript(s) find the custom waf scripts
   mkdir -pv tools
   touch __init__.py
@@ -38,8 +41,9 @@
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"
   export LINKFLAGS="$LDFLAGS"
+
+  cd $pkgname-$pkgver
   waf configure --prefix=/usr \
                 --no-bash-completion \
                 --dyn-manifest \
@@ -48,7 +52,7 @@
 }
 
 check() {
-  cd "${pkgname}-${pkgver}"
+  cd $pkgname-$pkgver
   waf test
 }
 
@@ -55,13 +59,9 @@
 package() {
   depends+=(libserd-0.so libsord-0.so libsratom-0.so)
 
-  cd "${pkgname}-${pkgver}"
-  waf install --destdir="${pkgdir}"
-  # license
-  install -vDm 644 COPYING \
-    -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  # bash completion
-  install -vDm 644 utils/lilv.bash_completion\
-    "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  cd $pkgname-$pkgver
+  waf install --destdir="$pkgdir"
+  install -vDm 644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname/"
+  install -vDm 644 utils/lilv.bash_completion "$pkgdir/usr/share/bash-completion/completions/$pkgname"
 }
 # vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list