mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 22:27:12 +08:00
24 lines
772 B
Bash
24 lines
772 B
Bash
|
# $Id: PKGBUILD 69667 2010-02-21 18:56:29Z 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.21
|
||
|
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.6' 'curl>=7.19.7' 'zlib>=1.2.3.3-3' 'openssl>=0.9.8l' 'libxslt>=1.1.26')
|
||
|
license=('LGPL')
|
||
|
options=('!libtool')
|
||
|
source=(http://librdf.org/dist/source/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('992061488af7a9e2d933df6b694bb876')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --disable-static
|
||
|
make || return 1
|
||
|
make prefix=$startdir/pkg/usr install || return 1
|
||
|
}
|