diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-04 17:46:39 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-04 17:46:39 +0100 |
commit | 9f3987b09bded00d382e3fdd99bdf1afe106455f (patch) | |
tree | 2cc36ba54b1ed16baafe4a2e34da3ec15e81637b /package/gtk+/Makefile | |
parent | dcb09f4eac12e7a3fd269e7648cf8d3cf9149efb (diff) |
add skeleton for gtk+
Diffstat (limited to 'package/gtk+/Makefile')
-rw-r--r-- | package/gtk+/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/gtk+/Makefile b/package/gtk+/Makefile new file mode 100644 index 000000000..775c9a082 --- /dev/null +++ b/package/gtk+/Makefile @@ -0,0 +1,30 @@ +# 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:= gtk+ +PKG_VERSION:= 2.18.3 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 8b34f75642ff6cc783dfa7e3af0ba443 +PKG_DESCR:= GTK+ library +PKG_SECTION:= libs +PKG_DEPENDS:= glib +PKG_URL:= http://www.gtk.org/ +PKG_SITES:= http://ftp.gnome.org/pub/gnome/sources/gtk+/2.18/ +ifeq ($(ADK_STATIC),y) +PKG_OPTS:= libonly +endif + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,GTK,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_GTK}/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |