mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 01:32:26 +01:00
46 lines
1002 B
Plaintext
46 lines
1002 B
Plaintext
# Contributor: William Pitcock <nenolod@dereferenced.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=redland
|
|
pkgver=1.0.10
|
|
pkgrel=2
|
|
pkgdesc="high-level RDF library"
|
|
url="http://www.librdf.org/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=
|
|
depends_dev="raptor-dev rasqal-dev sqlite-dev"
|
|
makedepends="$depends_dev perl"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="http://download.librdf.org/source/redland-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/redland-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
LIBS="-lm" ./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="bdbb9b8dc614fc09a14cd646079619e1 redland-1.0.10.tar.gz"
|