diff options
author | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
commit | 1bb2648cde916ac27d3dd75d7b64a4ddc89787b7 (patch) | |
tree | 016bfa1969323404c37dbef29cfc7242a5a8e9f3 /community/suil | |
parent | e9c244cac8e5dc1c59c7e8b7bc885fef04224b70 (diff) |
Sun Feb 10 01:12:35 PST 2013
Diffstat (limited to 'community/suil')
-rw-r--r-- | community/suil/PKGBUILD | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/community/suil/PKGBUILD b/community/suil/PKGBUILD deleted file mode 100644 index 243ce100b..000000000 --- a/community/suil/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 73981 2012-07-18 00:34:51Z speps $ -# Maintainer: speps <speps at aur dot archlinux dot org> - -pkgname=suil -pkgver=0.6.4 -pkgrel=1 -pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs" -arch=(i686 x86_64) -url="http://drobilla.net/software/$pkgname/" -license=('custom:ISC') -depends=('lv2') -makedepends=('python2' 'qt' 'gtk2') -optdepends=('qt: Qt UIs wrapping support' - 'gtk2: Gtk2 UIs wrapping support') -source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2") -md5sums=('9f34d3f15b4266e7cce59e3ac8f1fb3a') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # remove ldconfig - sed -i "/ldconfig/d" wscript - - python2 ./waf configure --prefix=/usr \ - --mandir=/usr/share/man - python2 ./waf -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - DESTDIR="$pkgdir" python2 ./waf install - - # license - install -Dm644 COPYING \ - "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: |