21 lines
571 B
Plaintext
21 lines
571 B
Plaintext
|
# Description: A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples.
|
||
|
# URL: http://drobilla.net/software/serd
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Packager: Danny Rawlins, crux at romster dot me
|
||
|
# Depends on: python
|
||
|
|
||
|
name=serd
|
||
|
version=0.30.0
|
||
|
release=1
|
||
|
source=(http://download.drobilla.net/$name-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
sed -i "/ldconfig/d" wscript
|
||
|
|
||
|
/usr/bin/python3 waf configure --prefix=/usr
|
||
|
/usr/bin/python3 waf build $MAKEFLAGS
|
||
|
/usr/bin/python3 waf install --destdir="$PKG"
|
||
|
}
|