From b2a79666aedc5affec3800144c72148589c9e568 Mon Sep 17 00:00:00 2001 From: davehome Date: Sat, 16 Jun 2012 21:52:01 -0600 Subject: [PATCH] lv2-ui: actually remove template --- srcpkgs/lv2-ui/template | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 srcpkgs/lv2-ui/template diff --git a/srcpkgs/lv2-ui/template b/srcpkgs/lv2-ui/template deleted file mode 100644 index 0be30b76cfd..00000000000 --- a/srcpkgs/lv2-ui/template +++ /dev/null @@ -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 " -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 '^|\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}* -}