summaryrefslogtreecommitdiff
path: root/extra/lv2core
diff options
context:
space:
mode:
Diffstat (limited to 'extra/lv2core')
-rw-r--r--extra/lv2core/PKGBUILD43
-rw-r--r--extra/lv2core/lv2core.changelog22
-rw-r--r--extra/lv2core/lv2core.install13
3 files changed, 0 insertions, 78 deletions
diff --git a/extra/lv2core/PKGBUILD b/extra/lv2core/PKGBUILD
deleted file mode 100644
index 21cef7c66..000000000
--- a/extra/lv2core/PKGBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# $Id: PKGBUILD 119725 2011-04-14 07:21:19Z schiv $
-# Maintainer: Ray Rashif <schiv@archlinux.org>
-
-pkgname=lv2core
-pkgver=4.0
-pkgrel=2
-pkgdesc="LV2: Successor to the LADSPA audio plug-in standard"
-url="http://lv2plug.in/"
-license=('LGPL' 'custom')
-arch=('i686' 'x86_64')
-makedepends=('python2')
-provides=('lv2')
-changelog=$pkgname.changelog
-install=$pkgname.install
-source=("http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2")
-md5sums=('5097d964f3559a1ecec2d2fc822ef53a')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- python2 waf configure --prefix=/usr
- python2 waf build $MAKEFLAGS
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- python2 waf install --destdir="$pkgdir"
-
- # do the work of lv2config to own symlinks;
- # - generate lv2 headers
- # - see FS#23514
- _ns=$(grep '^<http' manifest.ttl | sed 's|<http://\(.*\)>|\1|')
- _name=${_ns/*\/}
- _path="$pkgdir/usr/include/lv2/${_ns%/*}"
- install -d "$_path"
- ln -s "/usr/lib/lv2/$_name.lv2" "$_path/$_name"
-
- install -Dm644 COPYING \
- "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/extra/lv2core/lv2core.changelog b/extra/lv2core/lv2core.changelog
deleted file mode 100644
index 415cd0b59..000000000
--- a/extra/lv2core/lv2core.changelog
+++ /dev/null
@@ -1,22 +0,0 @@
-14 Apr 2011 (GMT+8) Ray Rashif <schiv@archlinux.org>
-
- * 4.0-2:
- Do the work of lv2config in PKGBUILD manually
- See https://bugs.archlinux.org/task/23514
-
-25 Mar 2011 (GMT+8) Ray Rashif <schiv@archlinux.org>
-
- * 4.0-1 :
- Upstream release
-
-9 Aug 2010 (GMT+8) Ray Rashif <schiv@archlinux.org>
-
- * 3.0-1 :
- Brought into extra from community for slv2/ardour
- - dep of slv2
-
- * PKGBUILD :
- Minor cosmetic ammendments.
-
- * lv2core.changelog :
- Added this changelog.
diff --git a/extra/lv2core/lv2core.install b/extra/lv2core/lv2core.install
deleted file mode 100644
index dbd9898d3..000000000
--- a/extra/lv2core/lv2core.install
+++ /dev/null
@@ -1,13 +0,0 @@
-post_install() {
- \ldconfig
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
-
-# vim:set ts=2 sw=2 et: