summaryrefslogtreecommitdiff
path: root/community/calf/PKGBUILD
blob: 63a320e47674f7345624d97142d28fdf4ac29259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# $Id: PKGBUILD 77743 2012-10-14 09:43:37Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Ray Rashif <schiv@archlinux.org>

pkgname=calf
pkgver=0.0.19
_rc=8
pkgrel=1
pkgdesc='LV2/DSSI/LADSPA plug-ins suite and standalone JACK host'
arch=('i686' 'x86_64' 'mips64el')
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")
install=calf.install
options=('!libtool')
sha256sums=('57cb536a24a7b9df890dc665fd75c2f4d307859e55f3b25015c73cdc726a56b5')

build() {
  cd $srcdir/$pkgname-$pkgver-rc$_rc
  if [ "$CARCH" != "mips64el" ]; then
    confflags="--enable-sse"
  else
    confflags=""
  fi
  ./configure	--prefix=/usr --enable-experimental ${confflags}
  make
}

package() {
  cd $srcdir/$pkgname-$pkgver-rc$_rc
  make DESTDIR=$pkgdir install
}

# vim:set ts=2 sw=2 et: