[arch-commits] Commit in raul/trunk (PKGBUILD)

David Runge dvzrv at archlinux.org
Sat Jan 27 09:42:21 UTC 2018


    Date: Saturday, January 27, 2018 @ 09:42:20
  Author: dvzrv
Revision: 287402

upgpkg: raul 0.8.0-6

Switching url and source to https. Adding signature check.
Moving patch to prepare(). Switching to sha512sums. Removing removal and then use of MAKEFLAGS.
Installing additional docs. Minor fixes.

Modified:
  raul/trunk/PKGBUILD

----------+
 PKGBUILD |   32 +++++++++++++++++++-------------
 1 file changed, 19 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2018-01-27 09:32:45 UTC (rev 287401)
+++ PKGBUILD	2018-01-27 09:42:20 UTC (rev 287402)
@@ -1,34 +1,40 @@
 # $Id$
 # Maintainer: Ray Rashif <schiv at archlinux.org>
+# Maintainer: David Runge <dave at sleepmap.de>
 # Contributor: Max a.k.a. Synthead <synthead at gmail.com>
 # Contributor: christhemonkey <christhemonkey at gmail dot com>
 
 pkgname=raul
 pkgver=0.8.0
-pkgrel=5
+pkgrel=6
 pkgdesc="C++ Realtime Audio Utility Library"
 arch=('x86_64')
-url="http://drobilla.net/software/raul/"
+url="https://drobilla.net/software/raul/"
 depends=('glib2')
 makedepends=('boost' 'python2')
-license=('GPL')
-options=('!makeflags')
-source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2"
+license=('GPL2')
+source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.sig}
         'raul-0.8.0-ldconfig.patch')
-md5sums=('8fa71a20db81fbed5fb6516dea383ea8'
-         'e86cee755a503d25d37fb2bcaaf48a9b')
+sha512sums=('7ad48c551945aad104309448bcdb86a4a2ca07c44af53b37492e7cddce6a093529f1e1e75c4b27cb8e292ec46424969cdea270883d44b2f1badc48df8943a0a1'
+            'SKIP'
+            'db3803fb722e1dc7cc8d8f889415eb001f6785ba3297ad7621c0ccc8099da95c3f300b209f14c5cebc66626a767fe7dd7950c7eae4d3e49c48b6c05db76267d3')
+validpgpkeys=('38B6B5874F029137653BF39BC6F60E6529727060')
 
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  # disable local call to ldconfig
   patch -Np1 -i "${srcdir}/raul-0.8.0-ldconfig.patch"
+}
 
+build() {
+  cd "${pkgname}-${pkgver}"
   python2 waf configure --prefix=/usr
-  python2 waf build $MAKEFLAGS
+  python2 waf build
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
+  cd "${pkgname}-${pkgver}"
   python2 waf install --destdir="${pkgdir}"
+  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+    -vDm644 {AUTHORS,ChangeLog,README}
 }



More information about the arch-commits mailing list