summaryrefslogtreecommitdiff
path: root/community/calf/PKGBUILD
blob: aafba84deacc1a72bf5020da16351374d4b92420 (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
# $Id: PKGBUILD 114782 2014-07-04 05:34:02Z fyan $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Ray Rashif <schiv@archlinux.org>

pkgname=calf
pkgver=0.0.19
pkgrel=4
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.tar.gz")
install=calf.install
sha256sums=('1106e7e27bcd18d47fc58c952a4dbf6c7a763272e13b2b94cee6f1b2fb922cec')

build() {
  cd $srcdir/$pkgname-$pkgver
  ./configure	--prefix=/usr --enable-experimental --enable-sse
  make
}

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

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