add libncurses dependency to bash, fixes #3150
[openwrt/svn-archive/archive.git] / utils / bash / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=bash
12 PKG_VERSION:=3.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/bash/
17 PKG_MD5SUM:=00bfa16d58e034e3c2aa27f390390d30
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/bash
25 SECTION:=utils
26 CATEGORY:=Utilities
27 TITLE:=The GNU Bourne Again SHell
28 DEPENDS:=+libncurses
29 URL:=http://www.gnu.org/software/bash/
30 endef
31
32 define Package/bash/description
33 Bash is an sh-compatible command language interpreter that executes
34 commands read from the standard input or from a file. Bash also
35 incorporates useful features from the Korn and C shells (ksh and csh).
36 endef
37
38
39 define Build/Configure
40 $(call Build/Configure/Default, \
41 --disable-restricted \
42 --without-bash-malloc \
43 --bindir=/bin \
44 )
45 endef
46
47
48 define Build/Compile
49 $(MAKE) -C $(PKG_BUILD_DIR)/builtins LDFLAGS_FOR_BUILD= mkbuiltins
50 $(MAKE) -C $(PKG_BUILD_DIR) \
51 DESTDIR="$(PKG_INSTALL_DIR)" \
52 SHELL="/bin/bash" \
53 all install
54 endef
55
56 define Package/bash/install
57 $(INSTALL_DIR) $(1)/bin
58 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/bash $(1)/bin/
59 endef
60
61 $(eval $(call BuildPackage,bash))
62