2007-03-07 15:46:36 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=dialog
|
|
|
|
PKG_VERSION:=1.0-20060221
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
|
|
PKG_SOURCE_URL:=ftp://invisible-island.net/dialog
|
|
|
|
PKG_MD5SUM:=acfd843163394e8bb17c841fdbe9c4a4
|
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/dialog
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+libncurses
|
|
|
|
TITLE:=Dialog
|
2007-10-14 03:46:31 +00:00
|
|
|
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
|
|
|
|
A script-interpreter which provides a set of curses widgets.
|
|
|
|
endef
|
|
|
|
|
2007-03-07 15:46:36 +00:00
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dialog/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/dialog $(1)/usr/bin
|
|
|
|
$(STRIP) $(1)/usr/bin/dialog
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dialog))
|
|
|
|
|