git » suil.git » commit 016d058

package update

author Antonio Rojas
2018-02-06 17:16:17 UTC
committer Antonio Rojas
2018-02-06 17:16:17 UTC
parent 8c9e58ff3cb52aac3e556e84c9f79d8165c1767d

package update

PKGBUILD +0 -38

diff --git a/PKGBUILD b/PKGBUILD
deleted file mode 100644
index 20c0003..0000000
--- a/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# 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: