[arch-commits] Commit in sord/repos/community-x86_64 (PKGBUILD PKGBUILD)
David Runge
dvzrv at archlinux.org
Sun Feb 18 23:10:58 UTC 2018
Date: Sunday, February 18, 2018 @ 23:10:57
Author: dvzrv
Revision: 296272
archrelease: copy trunk to community-x86_64
Added:
sord/repos/community-x86_64/PKGBUILD
(from rev 296271, sord/trunk/PKGBUILD)
Deleted:
sord/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 86 ++++++++++++++++++++++++++++++++++---------------------------
1 file changed, 49 insertions(+), 37 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-02-18 23:10:49 UTC (rev 296271)
+++ PKGBUILD 2018-02-18 23:10:57 UTC (rev 296272)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif <schiv at archlinux.org>
-# Contributor: speps <speps at aur dot archlinux dot org>
-
-pkgname=sord
-pkgver=0.14.0
-pkgrel=2
-pkgdesc="A lightweight C library for storing RDF data in memory"
-arch=('x86_64')
-url="http://drobilla.net/software/sord/"
-license=('custom:ISC')
-depends=('serd>=0.22.0' 'pcre')
-makedepends=('python2')
-source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2")
-md5sums=('7ffda283ad0a5716f196f650edd25713')
-
-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: sord/repos/community-x86_64/PKGBUILD (from rev 296271, sord/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-02-18 23:10:57 UTC (rev 296272)
@@ -0,0 +1,49 @@
+# $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=sord
+pkgver=0.16.0
+pkgrel=2
+pkgdesc="A lightweight C library for storing RDF data in memory"
+arch=('x86_64')
+url="https://drobilla.net/software/sord/"
+license=('custom:ISC')
+depends=('serd' 'pcre')
+makedepends=('python')
+source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.asc})
+sha512sums=('e18c6de62f2cbffedd4c200f6452f4fd37f719aed764ccc1b77c8da04a0f3394d47e8b57e19eefd6d600770926f505fdfa5da91564bbff5f4ead49f1adaba249'
+ '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 \
+ --test
+ python waf build
+}
+
+check() {
+ cd "${pkgname}-${pkgver}"
+ python waf test --verbose-tests
+}
+
+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,README}
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list