mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
778 B
Bash
23 lines
778 B
Bash
# $Id: PKGBUILD 50836 2009-09-02 05:08:46Z andyrtr $
|
|
# Maintainer: Andreas Radke <andyrtr at archlinux.org>
|
|
# Contributor: eric <eric@archlinux.org>
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=raptor
|
|
pkgver=1.4.19
|
|
pkgrel=1
|
|
pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
|
|
arch=('i686' 'x86_64')
|
|
url="http://librdf.org/raptor"
|
|
depends=('libxml2>=2.7.3-3' 'curl>=7.19.6' 'zlib>=1.2.3.3-3' 'openssl>=0.9.8k-4' 'libxslt>=1.1.24-2')
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
source=(http://librdf.org/dist/source/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('50acbd3b416c3f9e1a3a8ddb825bac25')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-static
|
|
make || return 1
|
|
make prefix=$startdir/pkg/usr install || return 1
|
|
}
|