blob: f131d26054830d9de300a83e7b88e51eb07a3b60 (
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
|
# Description: Plugins JACK pour ALSA
# URL: http://www.alsa-project.org
# Maintainer: NuTyX core team
# Packager: piernov <piernov@piernov.org>
# Depends on: alsa-plugins, jack2
# Run on: alsa-plugins,jack2
name=alsa-plugins-jack
version=1.0.24
release=1
source=(ftp://ftp.alsa-project.org/pub/plugins/${name%-*}-$version.tar.bz2
jack.conf)
build() {
cd ${name%-*}-$version
./configure --prefix=/usr \
--disable-samplerate \
--enable-jack \
--disable-pulseaudio \
--disable-avcodec \
--disable-maemo-plugin \
--with-speex=no
make -C jack
make -C jack DESTDIR=$PKG install
install -D -m 0644 ../jack.conf $PKG/usr/share/alsa/pcm/jack.conf
}
|