33 lines
816 B
Bash
33 lines
816 B
Bash
# Template file for 'suil'
|
|
pkgname=suil
|
|
version=0.10.8
|
|
revision=1
|
|
build_style=waf3
|
|
hostmakedepends="pkg-config lv2"
|
|
makedepends="gtk+-devel qt5-devel gtk+3-devel"
|
|
short_desc="Lightweight C library for loading and wrapping LV2 plugin UIs"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="http://drobilla.net/software/suil/"
|
|
distfiles="http://download.drobilla.net/${pkgname}-${version}.tar.bz2"
|
|
checksum=91cd87e17e80d2e43d64700369b93a5c2d0f1648e36411e0233253a0c3840f40
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" qt5-host-tools qt5-devel"
|
|
makedepends+=" lv2"
|
|
fi
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
suil-devel_package() {
|
|
depends="suil>=${version}_${revision}"
|
|
short_desc+=" - Development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|