[arch-commits] Commit in suil/repos/community-x86_64 (PKGBUILD PKGBUILD)
David Runge
dvzrv at archlinux.org
Sun Feb 18 23:17:02 UTC 2018
Date: Sunday, February 18, 2018 @ 23:17:01
Author: dvzrv
Revision: 296275
archrelease: copy trunk to community-x86_64
Added:
suil/repos/community-x86_64/PKGBUILD
(from rev 296274, suil/trunk/PKGBUILD)
Deleted:
suil/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 86 +++++++++++++++++++++++++++++++++----------------------------
1 file changed, 47 insertions(+), 39 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-02-18 23:16:52 UTC (rev 296274)
+++ PKGBUILD 2018-02-18 23:17:01 UTC (rev 296275)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif <schiv at archlinux.org>
-# Contributor: speps <speps at aur dot archlinux dot org>
-
-pkgname=suil
-pkgver=0.8.2
-pkgrel=3
-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:
Copied: suil/repos/community-x86_64/PKGBUILD (from rev 296274, suil/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-02-18 23:17:01 UTC (rev 296275)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: David Runge <dave at sleepmap.de>
+# Maintainer: Ray Rashif <schiv at archlinux.org>
+# Contributor: speps <speps at aur dot archlinux dot org>
+
+pkgname=suil
+pkgver=0.10.0
+pkgrel=2
+pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs"
+arch=('x86_64')
+url="https://drobilla.net/software/suil/"
+license=('custom:ISC')
+depends=('lv2')
+makedepends=('python' 'qt4' 'qt5-base' 'gtk2' 'gtk3')
+optdepends=('qt4: Qt4 UI wrapping support'
+ 'qt5-base: Qt5 UI wrapping support'
+ 'gtk2: GTK+ 2.x UI wrapping support'
+ 'gtk3: GTK+ 3.x UI wrapping support')
+source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha512sums=('721b73d987c1712e82493386e5d71957002c8a713595fce4372f1a5eb306c64a559db1ca794cec96295f72e22a9c0e9193f9a68b7f5846f2db45ce16b253fbea'
+ 'SKIP')
+validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard
+
+prepare() {
+ cd "${pkgname}-${pkgver}"
+ # remove local call to ldconfig
+ sed -i "/ldconfig/d" wscript
+}
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python waf configure --prefix=/usr
+ python waf build
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python waf install --destdir="${pkgdir}"
+ # license
+ install -vDm644 COPYING \
+ "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ # docs
+ install -t "$pkgdir/usr/share/doc/${pkgname}" \
+ -vDm644 {AUTHORS,NEWS,PACKAGING,README}
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list