2007-03-07 15:46:36 +00:00
|
|
|
#
|
2012-12-04 16:20:41 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2007-03-07 15:46:36 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=dialog
|
2012-12-04 16:20:41 +00:00
|
|
|
PKG_VERSION:=1.1-20120706
|
|
|
|
PKG_RELEASE:=1
|
2007-03-07 15:46:36 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
|
|
PKG_SOURCE_URL:=ftp://invisible-island.net/dialog
|
2012-12-04 16:20:41 +00:00
|
|
|
PKG_MD5SUM:=2e538305977178eb085a9859511c299d
|
2007-03-07 15:46:36 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/dialog
|
2011-11-18 23:13:29 +00:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+libncurses
|
|
|
|
TITLE:=Dialog
|
|
|
|
URL:=http://invisible-island.net/dialog/
|
2007-03-07 15:46:36 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/dialog/description
|
2011-11-18 23:13:29 +00:00
|
|
|
A script-interpreter which provides a set of curses widgets.
|
2007-03-07 15:46:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dialog/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2008-09-27 14:51:36 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/dialog $(1)/usr/bin
|
2007-03-07 15:46:36 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dialog))
|