diff options
Diffstat (limited to 'community/calf/PKGBUILD')
-rw-r--r-- | community/calf/PKGBUILD | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/community/calf/PKGBUILD b/community/calf/PKGBUILD index 87415eeea..c6de08cdf 100644 --- a/community/calf/PKGBUILD +++ b/community/calf/PKGBUILD @@ -1,30 +1,29 @@ -# $Id: PKGBUILD 77743 2012-10-14 09:43:37Z arodseth $ +# $Id: PKGBUILD 79263 2012-11-02 00:01:25Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Ray Rashif <schiv@archlinux.org> pkgname=calf pkgver=0.0.19 -_rc=8 -pkgrel=1 +pkgrel=2 pkgdesc='LV2/DSSI/LADSPA plug-ins suite and standalone JACK host' arch=('x86_64' 'i686') url='http://calf.sf.net/' license=('LGPL') depends=('libglade' 'fftw' 'lash' 'dssi' 'fluidsynth' 'hicolor-icon-theme' 'desktop-file-utils') makedepends=('lv2core' 'ladspa' 'dssi') -source=("http://downloads.sf.net/$pkgname/$pkgname-$pkgver-rc$_rc.tar.gz") +source=("http://downloads.sf.net/$pkgname/$pkgname-$pkgver.tar.gz") install=calf.install options=('!libtool') -sha256sums=('57cb536a24a7b9df890dc665fd75c2f4d307859e55f3b25015c73cdc726a56b5') +sha256sums=('1106e7e27bcd18d47fc58c952a4dbf6c7a763272e13b2b94cee6f1b2fb922cec') build() { - cd $srcdir/$pkgname-$pkgver-rc$_rc + cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr --enable-experimental --enable-sse make } package() { - cd $srcdir/$pkgname-$pkgver-rc$_rc + cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install } |