diff options
author | Koen Kooi <koen@openembedded.org> | 2010-07-18 13:20:27 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-07-18 13:20:27 +0200 |
commit | 6af5045c659ba6f7eddcfda0abc43e822625191f (patch) | |
tree | ea054567787c19de0b99963594c07e8d315c9f88 /recipes/jack | |
parent | a1b6432da53a834026d7222562ec94f712474602 (diff) |
jack: add 0.118.0 (latest stable)
Diffstat (limited to 'recipes/jack')
-rw-r--r-- | recipes/jack/jack_0.118.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/jack/jack_0.118.0.bb b/recipes/jack/jack_0.118.0.bb new file mode 100644 index 0000000000..b1a01e408a --- /dev/null +++ b/recipes/jack/jack_0.118.0.bb @@ -0,0 +1,31 @@ +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 = "GPLv2 LGPLv2.1" + +DEPENDS = "alsa-lib" + +SRC_URI = "http://jackaudio.org/downloads/jack-audio-connection-kit-${PV}.tar.gz" +SRC_URI[md5sum] = "d58e29a55f285d54e75134cec8e02a10" +SRC_URI[sha256sum] = "6aadf38ca98104772fd675bba7adecf72d2a600e17cccfc5d1f7c50f19b722c2" + +S = "${WORKDIR}/jack-audio-connection-kit-${PV}" + +inherit autotools + +EXTRA_OECONF = "--enable-timestamps --disable-capabilities --disable-oldtrans \ + --disable-portaudio --disable-coreaudio --enable-oss --enable-alsa" + +EXTRA_OEMAKE = 'transform="s,^,,"' +LDFLAGS_append = " -ldl -L${STAGING_LIBDIR}" + +PACKAGES =+ "libjack jack-server jack-examples" + +FILES_libjack = "${libdir}/*.so.* ${libdir}/jack/*.so" +FILES_jack-server = "${bindir}/jackd" +FILES_jack-examples = "${bindir}/*" +FILES_${PN}-doc += " ${datadir}/jack-audio-connection-kit/reference/html/* " + |