diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2016-02-15 22:17:51 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-25 17:45:49 +0100 |
commit | 80d76c66c7c7e000489c713146a8d7fedae7f483 (patch) | |
tree | 6f2c7f404ca1a0117ccf5638a3452e2e27c1f5eb | |
parent | 73a11ae002eab21077ca78bfffbfe60d86669244 (diff) | |
download | meta-openembedded-80d76c66c7c7e000489c713146a8d7fedae7f483.tar.gz |
libsdl2-mixer: initial add 2.0.1
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb b/meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb new file mode 100644 index 0000000000..2dc48e4761 --- /dev/null +++ b/meta-oe/recipes-multimedia/libsdl-mixer/libsdl2-mixer_2.0.1.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "Simple DirectMedia Layer mixer library V2" | ||
2 | SECTION = "libs" | ||
3 | DEPENDS = "virtual/libsdl2 flac libmikmod libvorbis" | ||
4 | LICENSE = "Zlib" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING.txt;md5=29d8bc7c38aa44b1cf3a633a46589917" | ||
6 | |||
7 | SRC_URI = "http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-${PV}.tar.gz" | ||
8 | |||
9 | SRC_URI[md5sum] = "c6c4f556d4415871f526248f5c9a627d" | ||
10 | SRC_URI[sha256sum] = "5a24f62a610249d744cbd8d28ee399d8905db7222bf3bdbc8a8b4a76e597695f" | ||
11 | |||
12 | S = "${WORKDIR}/SDL2_mixer-${PV}" | ||
13 | |||
14 | inherit autotools-brokensep | ||
15 | |||
16 | EXTRA_AUTORECONF += "--include=acinclude" | ||
17 | EXTRA_OECONF = "--disable-music-mp3 --enable-music-ogg --enable-music-ogg-tremor LIBS=-L${STAGING_LIBDIR}" | ||
18 | |||
19 | PACKAGECONFIG[mad] = "--enable-music-mp3-mad-gpl,--disable-music-mp3-mad-gpl,libmad" | ||
20 | |||
21 | do_configure_prepend () { | ||
22 | # Remove old libtool macros. | ||
23 | MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4" | ||
24 | for i in ${MACROS}; do | ||
25 | rm -f acinclude/$i | ||
26 | done | ||
27 | } | ||