summaryrefslogtreecommitdiff
path: root/package/sdl
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-01-10 18:21:19 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-10 18:21:19 +0100
commita7bb6b48448e96e432e6cc3d6e99cb9fd98af8f8 (patch)
tree510a27616ea58dfd888b559dd701c9adc66a68af /package/sdl
parentb3b32918faf1d63a84c68b24c866d8a849adfdae (diff)
add libSDL package
Diffstat (limited to 'package/sdl')
-rw-r--r--package/sdl/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/sdl/Makefile b/package/sdl/Makefile
new file mode 100644
index 000000000..8d1caac22
--- /dev/null
+++ b/package/sdl/Makefile
@@ -0,0 +1,31 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= sdl
+PKG_VERSION:= 1.2.14
+PKG_RELEASE:= 1
+PKG_MD5SUM:= e52086d1b508fa0b76c52ee30b55bec4
+PKG_DESCR:= Simple DirectMedia Layer
+PKG_SECTION:= libs
+PKG_URL:= http://www.libsdl.org
+PKG_SITES:= http://www.libsdl.org/release/
+
+DISTFILES:= SDL-${PKG_VERSION}.tar.gz
+WRKDIST= ${WRKDIR}/SDL-${PKG_VERSION}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBSDL,libsdl,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE:= gnu
+CONFIGURE_ARGS+= --disable-esd
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_LIBSDL)/usr/lib
+ $(CP) ${WRKINST}/usr/lib/libSDL*.so* $(IDIR_LIBSDL)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk