33 lines
754 B
Bash
33 lines
754 B
Bash
# Template file for 'serd'
|
|
pkgname=serd
|
|
version=0.22.0
|
|
revision=1
|
|
build_style=waf
|
|
hostmakedepends="python"
|
|
short_desc="Lightweight C library for RDF syntax"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="ISC"
|
|
homepage="http://drobilla.net/software/serd/"
|
|
distfiles="http://download.drobilla.net/${pkgname}-${version}.tar.bz2"
|
|
checksum=7b030287b4b75f35e6212b145648bec0be6580cc5434caa6d2fe64a38562afd2
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
serd-devel_package() {
|
|
depends="libserd>=${version}_${revision}"
|
|
short_desc+=" - Development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
libserd_package() {
|
|
short_desc+=" - Runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|