blob: a4988fdef0fb6d61457e412e0e072faf2376be6d (
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
|
DESCRIPTION = "JACK is a low-latency audio server. It can \
connect a number of different applications to an audio \
device, as well as allowing them to share audio between \
themselves."
SECTION = "libs/multimedia"
PRIORITY = "optional"
LICENSE = "GPL LGPL"
PR = "r0"
SRC_URI = "${SOURCEFORGE_MIRROR}/jackit/jack-audio-connection-kit-${PV}.tar.gz"
S = "${WORKDIR}/jack-audio-connection-kit-${PV}"
inherit autotools pkgconfig
EXTRA_OECONF = "--enable-timestamps --disable-capabilities --disable-oldtrans \
--disable-portaudio --disable-coreaudio --enable-oss --enable-alsa"
EXTRA_OEMAKE = 'transform="s,^,,"'
do_configure() {
gnu-configize
oe_runconf
}
do_install_append() {
install -d ${D}${docdir}
mv -f ${D}${datadir}/jack-audio-connection-kit ${D}${docdir}/
}
PACKAGES = "libjack jack-server jack-examples jack-doc jack-dev"
FILES_libjack = "${libdir}/*.so.* ${libdir}/jack/*.so"
FILES_jack-server = "${bindir}/jackd"
FILES_jack-examples = "${bindir}"
|