diff options
author | Marko Lindqvist <cazfi74@gmail.com> | 2012-12-15 17:53:57 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-16 21:11:45 +0100 |
commit | 70129e0cd109f03cd7b888b20edddd0d85442b56 (patch) | |
tree | 11daf339fa61535b9703640adf2b174be366d5f0 /meta-oe/recipes-multimedia/libsdl-image/libsdl-image_1.2.12.bb | |
parent | 77da72f619b979cc43bbbdf68c8d4b53d4add4b4 (diff) | |
download | meta-openembedded-70129e0cd109f03cd7b888b20edddd0d85442b56.tar.gz |
libsdl-image: update to upstream version 1.2.12
Now uses zlib license.
Works with libpng15.
Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia/libsdl-image/libsdl-image_1.2.12.bb')
-rw-r--r-- | meta-oe/recipes-multimedia/libsdl-image/libsdl-image_1.2.12.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libsdl-image/libsdl-image_1.2.12.bb b/meta-oe/recipes-multimedia/libsdl-image/libsdl-image_1.2.12.bb new file mode 100644 index 000000000..ccc3d4003 --- /dev/null +++ b/meta-oe/recipes-multimedia/libsdl-image/libsdl-image_1.2.12.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | DESCRIPTION = "Simple DirectMedia Layer image library." | ||
2 | SECTION = "libs" | ||
3 | |||
4 | LICENSE = "zlib" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=613734b7586e1580ef944961c6d62227" | ||
6 | |||
7 | PR = "r0" | ||
8 | |||
9 | DEPENDS = "tiff zlib libpng jpeg virtual/libsdl" | ||
10 | |||
11 | SRC_URI = "http://www.libsdl.org/projects/SDL_image/release/SDL_image-${PV}.tar.gz" | ||
12 | SRC_URI[md5sum] = "a0f9098ebe5400f0bdc9b62e60797ecb" | ||
13 | SRC_URI[sha256sum] = "0b90722984561004de84847744d566809dbb9daf732a9e503b91a1b5a84e5699" | ||
14 | |||
15 | S = "${WORKDIR}/SDL_image-${PV}" | ||
16 | |||
17 | inherit autotools | ||
18 | |||
19 | export SDL_CONFIG = "${STAGING_BINDIR_CROSS}/sdl-config" | ||
20 | |||
21 | # Disable the run-time loading of the libs and bring back the soname dependencies. | ||
22 | EXTRA_OECONF += "--disable-jpg-shared --disable-png-shared -disable-tif-shared" | ||
23 | |||
24 | do_configure_prepend() { | ||
25 | # Removing this file fixes a libtool version mismatch. | ||
26 | rm -f acinclude/libtool.m4 | ||
27 | rm -f acinclude/sdl.m4 | ||
28 | rm -f acinclude/pkg.m4 | ||
29 | rm -f acinclude/lt~obsolete.m4 | ||
30 | rm -f acinclude/ltoptions.m4 | ||
31 | rm -f acinclude/ltsugar.m4 | ||
32 | rm -f acinclude/ltversion.m4 | ||
33 | } | ||