a9058e5132663137d10218fb67703607b00a0886
[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 URL:=http://www.gnu.org/software/bash/
29 endef
30
31 define Package/bash/description
32 Bash is an sh-compatible command language interpreter that executes
33 commands read from the standard input or from a file. Bash also
34 incorporates useful features from the Korn and C shells (ksh and csh).
35 endef
36
37
38 define Build/Configure
39 $(call Build/Configure/Default, \
40 --disable-restricted \
41 --without-bash-malloc \
42 --bindir=/bin \
43 )
44 endef
45
46
47 define Build/Compile
48 $(MAKE) -C $(PKG_BUILD_DIR)/builtins LDFLAGS_FOR_BUILD= mkbuiltins
49 $(MAKE) -C $(PKG_BUILD_DIR) \
50 DESTDIR="$(PKG_INSTALL_DIR)" \
51 SHELL="/bin/bash" \
52 all install
53 endef
54
55 define Package/bash/install
56 $(INSTALL_DIR) $(1)/bin
57 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/bash $(1)/bin/
58 endef
59
60 $(eval $(call BuildPackage,bash))
61