lv2-ui: actually remove template

This commit is contained in:
davehome 2012-06-16 21:52:01 -06:00
parent 6c70079cf4
commit b2a79666ae

View file

@ -1,37 +0,0 @@
# Template file for 'lv2-ui'
pkgname=lv2-ui
version=2.2
build_style=waf
homepage="http://lv2plug.in"
distfiles="http://lv2plug.in/spec/${pkgname}-${version}.tar.bz2"
depends="glibc"
makedepends="python"
fulldepends="lv2core"
revision=1
short_desc="UI API for the LV2 plugin standard"
maintainer="davehome <davehome@redthumb.info.tm>"
license="LGPL-2.1, BSD"
checksum=d348acf4f1559800fe74cbc0ad8058e8db97d7d4913942f146cd1c86c5227db0
long_desc="
LV2 is a plugin standard for audio systems. It defines a minimal yet
extensible C API for plugin code and a format for plugin bundles.
This is the UI API."
post_install()
{
# This bit is from Arch
# do the work of lv2config to own symlinks;
# - generate lv2 headers
# - see FS#23514
local _ns=$(grep '^<http' manifest.ttl | sed 's|<http://\(.*\)>|\1|')
local _name=${_ns/*\/}
local _path="usr/include/lv2/${_ns%/*}"
vmkdir "$_path"
cd "${DESTDIR}/usr/include/lv2/${_ns%/*}" && \
ln -s "../../../../../lib/lv2/$_name.lv2" "$_name"
# Clean up build-specific files glob-copied by waf install target
cd "$DESTDIR/usr/lib/lv2/$_name.lv2" && rm {.xbps_,.lock-wafbuild}*
}