git » suil.git » commit 179e016

Rebuild to add lv2 to depends.

author David Runge
2021-11-20 11:43:28 UTC
committer David Runge
2021-11-20 11:43:28 UTC
parent 550ad6c8cc47b5e5abe1b536d6475a03ffcf3cac

Rebuild to add lv2 to depends.

The lv2 package is required according to pkgconfig.
Simplify quoting in the file.
Add LINKFLAGS environment variable to supply waf with LDFLAGS to prevent
overlinking.

PKGBUILD +9 -10

diff --git a/PKGBUILD b/PKGBUILD
index 2058ab5..dfe8e4d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,13 +4,13 @@
 
 pkgname=suil
 pkgver=0.10.10
-pkgrel=1
+pkgrel=2
 pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
-arch=('x86_64')
+arch=(x86_64)
 url="https://drobilla.net/software/suil/"
-license=('custom:ISC')
-depends=('glibc')
-makedepends=('gtk2' 'gtk3' 'lv2' 'python' 'qt5-base' 'qt5-x11extras' 'waf')
+license=(ISC)
+depends=(glibc lv2)
+makedepends=(gtk2 gtk3 python qt5-base qt5-x11extras waf)
 optdepends=('atk: support for wrapping X11 and Qt5 in GTK2/3 and GTK2 in Qt5'
             'cairo: support for wrapping X11 and Qt5 in GTK2/3'
             'fontconfig: support for wrapping X11 and Qt5 in GTK2 and GTK2 in Qt5'
@@ -25,7 +25,7 @@ optdepends=('atk: support for wrapping X11 and Qt5 in GTK2/3 and GTK2 in Qt5'
             'qt5-x11extras: support for wrapping X11 in Qt5'
             'pango: support for wrapping X11 in GTK2/3, Qt5 in GTK2/3 and GTK2 in Qt5'
             'zlib: support for wrapping X11 in GTK3 and Qt5 in GTK3')
-provides=('libsuil-0.so')
+provides=(libsuil-0.so)
 source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.asc})
 sha512sums=('e442022096150b2f71d65bbd625e2e262cb3e3865c57f5a30f0472dac8ef90ad2fbbf67235823055019017e3751b46330f6e98b8e1745e5845eb02c4d2a4fc21'
             'SKIP')
@@ -52,6 +52,7 @@ prepare() {
 
 build() {
   cd "${pkgname}-${pkgver}"
+  export LINKFLAGS="$LDFLAGS"
   waf configure --prefix=/usr
   waf build
 }
@@ -60,10 +61,8 @@ package() {
   cd "${pkgname}-${pkgver}"
   waf install --destdir="${pkgdir}"
   # license
-  install -vDm 644 COPYING \
-    -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
   # docs
-  install -vDm 644 {AUTHORS,NEWS,PACKAGING,README.md} \
-    -t "$pkgdir/usr/share/doc/${pkgname}"
+  install -vDm 644 {AUTHORS,NEWS,PACKAGING,README.md} -t "$pkgdir/usr/share/doc/${pkgname}"
 }
 # vim:set ts=2 sw=2 et: