summaryrefslogtreecommitdiff
path: root/package/dialog
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-01-10 16:16:44 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-10 16:16:44 +0100
commitcfc200714ddfa6d76feb836c258b1135d91a8348 (patch)
treeecc4628fc161de5044c9acb03bb63b2fd48ae75c /package/dialog
parent77bdac14df2e20b290cdd4bcad0ecb0e1fc446be (diff)
parent91c8ff1c3f772e0ae8d7c60a3252c5efced9fe92 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Conflicts: package/digitemp/Makefile
Diffstat (limited to 'package/dialog')
-rw-r--r--package/dialog/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/package/dialog/Makefile b/package/dialog/Makefile
new file mode 100644
index 000000000..2763a0946
--- /dev/null
+++ b/package/dialog/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:= dialog
+PKG_VERSION:= 1.1-20080819
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 3caebd641a9f337b980becb4444336c5
+PKG_DESCR:= A text gui interface
+PKG_SECTION:= misc
+PKG_DEPENDS:= libncurses
+PKG_BUILDDEP+= ncurses
+PKG_SITES:= ftp://ftp.us.debian.org/debian/pool/main/d/dialog/
+
+DISTFILES:= ${PKG_NAME}_${PKG_VERSION}.orig.tar.gz
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,DIALOG,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+MAKE_FILE:= makefile
+CONFIGURE_STYLE:= gnu
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_DIALOG)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/dialog $(IDIR_DIALOG)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk