blob: 7e08c4805f53788824ff451ce77996e3828c175f (
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
|
#!/bin/sh
NAME="caps"
DESC="The LADSPA C* Audio Plugin Suite"
MAKEDEPS="make ladspa "
PKG_VER=0.9.26
SOURCE="http://quitte.de/dsp/caps_${PKG_VER}.tar.bz2"
ADDITIONAL="
fix-cstdint-missing.patch
"
prepare () {
apply_patches
}
build () {
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--sysconfdir=/etc \
--disable-static
make
}
package () {
make PREFIX=$PKG_DEST/usr install
}
|