void-packages/srcpkgs/serd/template
2011-10-24 09:17:21 +00:00

38 lines
981 B
Text

# Template file for 'serd'
pkgname=serd
version=0.5.0
homepage="http://drobilla.net/software/serd/"
distfiles="http://download.drobilla.net/${pkgname}-${version}.tar.bz2"
build_style=custom-install
short_desc="Lightweight C library for RDF syntax."
maintainer="davehome <davehome@redthumb.info.tm>"
license="ISC"
checksum=2b25033bca2ce903e3c901e5c2ceb500eebb1a56ca68a1018ec623aaeb7df8d0
long_desc="
Serd is a lightweight C library for RDF syntax which supports reading and
writing Turtle and NTriples.
Serd is not intended to be a swiss-army knife of RDF syntax, but rather is
suited to resource limited or performance critical applications, or
situations where a simple reader/writer with minimal dependencies is ideal
(e.g. in LV2 hosts or plugins)."
subpackages="$pkgname-devel lib$pkgname"
Add_dependency run glibc
Add_dependency run libserd
do_configure()
{
./waf configure --prefix=/usr
}
do_build()
{
./waf
}
do_install()
{
DESTDIR=${DESTDIR} ./waf install
}