diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-09-15 18:51:51 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-09-15 18:51:51 +0200 |
commit | f83548e0f3b68a10f5396e952d0e35afb799ddf3 (patch) | |
tree | c8e345c4876245bb20e576430837cf4799013d30 /package/SDL_ttf/Makefile | |
parent | 42dd9bd2011b230d4cd55eb41c3f91e74e9a4c95 (diff) |
add new SDL libraries
Diffstat (limited to 'package/SDL_ttf/Makefile')
-rw-r--r-- | package/SDL_ttf/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/package/SDL_ttf/Makefile b/package/SDL_ttf/Makefile new file mode 100644 index 000000000..a76e49897 --- /dev/null +++ b/package/SDL_ttf/Makefile @@ -0,0 +1,27 @@ +# 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_ttf +PKG_VERSION:= 2.0.10 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 814e6e17e8879254208d23b3b7e0354b +PKG_DESCR:= TrueType fonts in your SDL applications +PKG_SECTION:= libs +PKG_DEPENDS:= libsdl libfreetype +PKG_BUILDDEP:= sdl freetype +PKG_URL:= http://www.libsdl.org/projects/SDL_ttf/ +PKG_SITES:= http://www.libsdl.org/projects/SDL_ttf/release/ + +PKG_SUBPKGS:= LIBSDL_TTF + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBSDL_TTF,libsdl-ttf,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +libsdl-ttf-install: + $(INSTALL_DIR) $(IDIR_LIBSDL_TTF)/usr/lib + $(CP) $(WRKINST)/usr/lib/libSDL_ttf*so* $(IDIR_LIBSDL_TTF)/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |