blob: c8cf6aa7bca0ca9236410cff51e6b6338bcf0b24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $Id: PKGBUILD 110599 2011-02-20 15:52:07Z andyrtr $
# Maintainer: Andreas Radke <andyrtr at archlinux.org>
# Contributor: eric <eric@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=raptor1
pkgver=1.4.21
pkgrel=3
pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples - old V1 api for compatibility"
arch=('i686' 'x86_64' 'mips64el')
url="http://librdf.org/raptor"
depends=('libxml2' 'curl' 'zlib' 'libxslt')
license=('LGPL')
options=('!libtool' '!docs')
source=(http://librdf.org/dist/source/raptor-$pkgver.tar.gz)
md5sums=('992061488af7a9e2d933df6b694bb876')
build() {
cd ${srcdir}/raptor-${pkgver}
./configure --prefix=/usr --disable-static
make
}
package() {
cd ${srcdir}/raptor-${pkgver}
make prefix=${pkgdir}/usr install
mv ${pkgdir}/usr/bin/rapper ${pkgdir}/usr/bin/rapperV1
rm -f ${pkgdir}/usr/share/man/man1/rapper.1
}
|