sord: New package.

This commit is contained in:
davehome 2011-10-24 09:42:01 +00:00
parent a8f20f1c89
commit dc7cd00187
7 changed files with 69 additions and 0 deletions

1
srcpkgs/libsord Symbolic link
View File

@ -0,0 +1 @@
sord

1
srcpkgs/sord-devel Symbolic link
View File

@ -0,0 +1 @@
sord

2
srcpkgs/sord/depends Normal file
View File

@ -0,0 +1,2 @@
abi_depends=">=0.5.0"
api_depends="${abi_depends}"

View File

@ -0,0 +1,14 @@
# Template file for 'libsord'.
#
short_desc="${short_desc} - Runtime library"
long_desc="${long_desc}
This package contains the serd runtime library."
Add_dependency run glibc
Add_dependency run libserd
do_install()
{
vmove "usr/lib/*.so*" usr/lib
}

View File

@ -0,0 +1,15 @@
# Template file for 'sord-devel'.
#
short_desc="${short_desc} - Development files"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
Add_dependency run glibc-devel
Add_dependency run libsord
do_install()
{
vmove usr/include usr
vmove usr/lib/pkgconfig usr/lib
}

35
srcpkgs/sord/template Normal file
View File

@ -0,0 +1,35 @@
# Template file for 'sord'
pkgname=sord
version=0.5.0
homepage="http://drobilla.net/software/sord/"
distfiles="http://download.drobilla.net/${pkgname}-${version}.tar.bz2"
build_style=custom-install
short_desc="Lightweight C library for storing RDF data in memory."
maintainer="davehome <davehome@redthumb.info.tm>"
license="ISC"
checksum=0f18879ed9d5c4d056cddb5af9057090d1de874d3f3996386cf716d8060625ef
long_desc="
Sord is a lightweight C library for storing RDF data in memory."
subpackages="$pkgname-devel lib$pkgname"
Add_dependency run glibc
Add_dependency run libserd
Add_dependency run libsord
Add_dependency build python
Add_dependency build coreutils
do_configure()
{
./waf configure --prefix=/usr
}
do_build()
{
./waf
}
do_install()
{
DESTDIR=${DESTDIR} ./waf install
}

View File

@ -916,3 +916,4 @@ libaubioext.so.2 libaubio aubio-devel
libraptor2.so.0 libraptor raptor-devel
liblrdf.so.2 liblrdf liblrdf-devel
libserd-0.so.0 libserd serd-devel
libsord-0.so.0 libsord sord-devel