diff options
author | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-03-04 09:21:57 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbrodkorb@conet.de> | 2015-03-04 09:21:57 +0100 |
commit | 4fc74012b67cfc62c5481b8d7b6d95052f40c2bf (patch) | |
tree | d6f7c860195c63564d98f53c143acbf0082ea3ca /package/newt | |
parent | 68b4cb5aaa95eb39401bcbaa7c517cfd31c3edcf (diff) | |
parent | 9919c4bc2f53037331313edace085c386c2af4cc (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/newt')
-rw-r--r-- | package/newt/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/package/newt/Makefile b/package/newt/Makefile new file mode 100644 index 000000000..57521d1a2 --- /dev/null +++ b/package/newt/Makefile @@ -0,0 +1,34 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(ADK_TOPDIR)/rules.mk + +PKG_NAME:= newt +PKG_VERSION:= 0.52.18 +PKG_RELEASE:= 1 +PKG_HASH:= 771b0e634ede56ae6a6acd910728bb5832ac13ddb0d1d27919d2498dab70c91e +PKG_DESCR:= windowing toolkit +PKG_SECTION:= libs/misc +PKG_DEPENDS:= slang libpopt +PKG_BUILDDEP:= slang popt +PKG_URL:= https://fedorahosted.org/newt/ +PKG_SITES:= https://fedorahosted.org/releases/n/e/$(PKG_NAME)/ + +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.gz + +include $(ADK_TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,NEWT,newt,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION))) + +CONFIGURE_ARGS+= --without-python \ + --without-tcl \ + --without-gpm-support + +newt-install: + $(INSTALL_DIR) $(IDIR_NEWT)/usr/{bin,lib} + $(INSTALL_BIN) $(WRKINST)/usr/bin/whiptail \ + $(IDIR_NEWT)/usr/bin + $(CP) $(WRKINST)/usr/lib/libnewt.so* \ + $(IDIR_NEWT)/usr/lib + +include $(ADK_TOPDIR)/mk/pkg-bottom.mk |