Date: Thursday, March 24, 2011 @ 16:31:38 Author: schiv Revision: 116670
upgpkg: lv2core 4.0-1 upstream release Added: lv2core/trunk/lv2core.install Modified: lv2core/trunk/PKGBUILD lv2core/trunk/lv2core.changelog -------------------+ PKGBUILD | 16 +++++++--------- lv2core.changelog | 7 ++++++- lv2core.install | 14 ++++++++++++++ 3 files changed, 27 insertions(+), 10 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-03-24 19:07:50 UTC (rev 116669) +++ PKGBUILD 2011-03-24 20:31:38 UTC (rev 116670) @@ -1,8 +1,8 @@ # $Id$ -# Maintainer: Ray Rashif <schivmeis...@gmail.com> +# Maintainer: Ray Rashif <sc...@archlinux.org> pkgname=lv2core -pkgver=3.0 +pkgver=4.0 pkgrel=1 pkgdesc="LV2: Successor to the LADSPA audio plug-in standard" url="http://lv2plug.in/" @@ -11,23 +11,21 @@ makedepends=('python2') provides=('lv2') changelog=$pkgname.changelog +install=$pkgname.install source=(http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2) -md5sums=('382f7d96ff0374c0c495336e1c8bb999') +md5sums=('5097d964f3559a1ecec2d2fc822ef53a') build() { cd "$srcdir/$pkgname-$pkgver" - # fix for python 2.7 - sed -i 's:^#!.*bin/env python:#!/usr/bin/env python2:' waf - - ./waf configure --prefix=/usr - ./waf build $MAKEFLAGS + python2 waf configure --prefix=/usr + python2 waf build $MAKEFLAGS } package() { cd "$srcdir/$pkgname-$pkgver" - ./waf install --destdir="$pkgdir" + python2 waf install --destdir="$pkgdir" install -Dm0644 COPYING \ "$pkgdir/usr/share/licenses/$pkgname/COPYING" Modified: lv2core.changelog =================================================================== --- lv2core.changelog 2011-03-24 19:07:50 UTC (rev 116669) +++ lv2core.changelog 2011-03-24 20:31:38 UTC (rev 116670) @@ -1,5 +1,10 @@ -9 Aug 2010 (GMT+8) Ray Rashif <schivmeis...@gmail.com> +25 Mar 2011 (GMT+8) Ray Rashif <sc...@archlinux.org> + * 4.0-1 : + Upstream release + +9 Aug 2010 (GMT+8) Ray Rashif <sc...@archlinux.org> + * 3.0-1 : Brought into extra from community for slv2/ardour - dep of slv2 Added: lv2core.install =================================================================== --- lv2core.install (rev 0) +++ lv2core.install 2011-03-24 20:31:38 UTC (rev 116670) @@ -0,0 +1,14 @@ +post_install() { + \ldconfig + \lv2config +} + +post_upgrade() { + post_install +} + +post_remove() { + \ldconfig +} + +# vim:set ts=2 sw=2 et: