diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-10-09 09:24:57 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-10-09 09:24:57 +0000 |
commit | cf2a6858576fa48baf9a764f39d3b2c8711624d7 (patch) | |
tree | 2f0a0af49e3e2a96284d5607949cc99c03141781 /packages/libsdl/libsdl-image.inc | |
parent | 10bb92e04748af06ffc43c0cf9773de8a5e8914c (diff) |
libsdl-image: Moved common parts into libsdl-image.inc, added version 1.2.6
Diffstat (limited to 'packages/libsdl/libsdl-image.inc')
-rw-r--r-- | packages/libsdl/libsdl-image.inc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/libsdl/libsdl-image.inc b/packages/libsdl/libsdl-image.inc new file mode 100644 index 0000000000..1212e9cfa6 --- /dev/null +++ b/packages/libsdl/libsdl-image.inc @@ -0,0 +1,18 @@ +DESCRIPTION = "Simple DirectMedia Layer image library." +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "zlib libpng jpeg virtual/libsdl" +LICENSE = "LGPL" + +SRC_URI = "http://www.libsdl.org/projects/SDL_image/release/SDL_image-${PV}.tar.gz" + +S = "${WORKDIR}/SDL_image-${PV}" + +inherit autotools + +do_stage() { + oe_libinstall -so libSDL_image ${STAGING_LIBDIR} + ln -sf libSDL_image.so ${STAGING_LIBDIR}/libSDL_image-1.2.so + install -m 0644 SDL_image.h ${STAGING_INCDIR}/SDL/SDL_image.h +} + |