2011-09-03 22:51:52 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2010-01-14 19:00:05 +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:=dash
|
2011-09-03 22:51:52 +00:00
|
|
|
PKG_VERSION:=0.5.7
|
2010-01-14 19:00:05 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2010-07-14 14:19:20 +00:00
|
|
|
PKG_SOURCE_URL:=http://gondor.apana.org.au/~herbert/dash/files
|
2011-09-03 22:51:52 +00:00
|
|
|
PKG_MD5SUM:=f6cedb10ae7258adb5ab17a10ae80d51
|
2010-07-14 14:19:20 +00:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
2010-01-14 19:00:05 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/dash
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=Debian Almquist shell
|
2010-03-24 04:49:34 +00:00
|
|
|
URL:=http://gondor.apana.org.au/~herbert/dash/
|
2010-01-14 19:00:05 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dash/description
|
|
|
|
A small footprint, POSIX complied unix shell
|
|
|
|
endef
|
|
|
|
|
2010-07-14 14:19:20 +00:00
|
|
|
MAKE_FLAGS += \
|
2011-09-03 22:51:52 +00:00
|
|
|
AWK="awk"
|
2010-01-14 19:00:05 +00:00
|
|
|
|
|
|
|
define Package/dash/install
|
|
|
|
$(INSTALL_DIR) $(1)/bin
|
2010-07-14 14:19:20 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dash $(1)/bin/
|
2010-01-14 19:00:05 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dash))
|