35 lines
843 B
Bash
35 lines
843 B
Bash
# Template file for 'sratom'
|
|
pkgname=sratom
|
|
version=0.6.6
|
|
revision=1
|
|
build_style=waf3
|
|
hostmakedepends="pkg-config"
|
|
makedepends="serd-devel sord-devel lv2"
|
|
short_desc="Library for serialising LV2 atoms to/from RDF (Turtle syntax)"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="ISC"
|
|
homepage="http://drobilla.net/software/sratom/"
|
|
distfiles="http://download.drobilla.net/${pkgname}-${version}.tar.bz2"
|
|
checksum=fb910bf62a5e69f4430bf09653d386fc4de9ff02bfd58635e1d45cbd31481b9d
|
|
|
|
if [ "$XBPS_CHECK_PKGS" ]; then
|
|
configure_args="-T"
|
|
fi
|
|
|
|
do_check() {
|
|
./build/sratom_test
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
sratom-devel_package() {
|
|
depends="serd-devel>=0.18.0 sord-devel lv2 sratom>=${version}_${revision}"
|
|
short_desc+=" - Development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|