git » suil.git » commit 8c9e58f

extra2community: Moving suil from extra to community

author Antonio Rojas
2018-02-06 17:15:23 UTC
committer Antonio Rojas
2018-02-06 17:15:23 UTC
parent ac5982910558a2fc550ad2a817347c204f467bdf

extra2community: Moving suil from extra to community

PKGBUILD +38 -0

diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..20c0003
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,38 @@
+# Maintainer: Ray Rashif <schiv@archlinux.org>
+# Contributor: speps <speps at aur dot archlinux dot org>
+
+pkgname=suil
+pkgver=0.8.2
+pkgrel=2
+pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
+arch=('x86_64')
+url="http://drobilla.net/software/suil/"
+license=('custom:ISC')
+depends=('lv2>=1.10.0')
+makedepends=('python2' 'qt4' 'gtk2')
+optdepends=('qt4: Qt 4.x UI wrapping support'
+            'gtk2: GTK+ 2.x UI wrapping support')
+source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2")
+md5sums=('1b06947b1fc028f9ffcbc16d30065aa5')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # remove ldconfig --speps
+  sed -i "/ldconfig/d" wscript
+
+  python2 waf configure --prefix=/usr
+  python2 waf build $MAKEFLAGS
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  python2 waf install --destdir="$pkgdir"
+
+  # license
+  install -Dm644 COPYING \
+    "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et: