summaryrefslogtreecommitdiff
path: root/repo/calf/calf.xibuild
blob: 1629a87997b717b77904d0ccccabef04b3fd51b9 (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
#!/bin/sh

NAME="calf"
DESC="Calf Studio Gear"

MAKEDEPS="autoconf automake expat fluidsynth gtk2 jack libtool lv2"

PKG_VER=0.90.3
SOURCE="http://calf-studio-gear.org/files/calf-$PKG_VER.tar.gz"

prepare() {
	autoreconf -vif
}

build() {
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var
	make
}

check() {
	make check
}

package() {
	make DESTDIR="$PKG_DEST" install
}