summaryrefslogtreecommitdiff
path: root/community/serd/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/serd/PKGBUILD')
-rw-r--r--community/serd/PKGBUILD36
1 files changed, 0 insertions, 36 deletions
diff --git a/community/serd/PKGBUILD b/community/serd/PKGBUILD
deleted file mode 100644
index 0caa08e58..000000000
--- a/community/serd/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 72424 2012-06-14 07:58:39Z speps $
-# Maintainer: speps <speps at aur dot archlinux dot org>
-
-pkgname=serd
-pkgver=0.14.0
-pkgrel=1
-pkgdesc="A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples."
-arch=(i686 x86_64)
-url="http://drobilla.net/software/$pkgname/"
-license=('custom:ISC')
-depends=('glibc')
-makedepends=('python2')
-source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2")
-md5sums=('405b11ee92f3f19ce4a757ba34953886')
-
-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: