CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Imported core-cross ports from 2.5
[crossrootfs.git] / bash / Pkgfile
1 # Description: An sh-compatible command language interpreter
2 # URL: http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX ARM System Team, crux-arm at mikeux dot dyndns dot org
5 # Depends on: ncurses
6
7 name=bash
8 version=4.0.28
9 release=2
10 source=(http://ftp.gnu.org/gnu/$name/$name-4.0.tar.gz \
11 http://crux.nu/ports/crux-2.5/core/$name/$name-4.0-001-028.patch.gz \
12 profile)
13
14 build() {
15 cd $name-4.0
16
17 gunzip -c $SRC/$name-4.0-001-028.patch.gz | patch -p0
18 cat > config.cache <<EOF
19 bash_cv_sys_named_pipes=yes
20 bash_cv_job_control_missing=present
21 EOF
22
23 touch configure
24 ./configure --build=$CHOST \
25 --host=$CTARGET \
26 --cache-file=config.cache \
27 --prefix=/usr \
28 --exec-prefix= \
29 --mandir=/usr/man \
30 --disable-nls \
31 --without-bash-malloc \
32 --with-curses
33 make
34 make DESTDIR=$PKG install
35
36 rm -rf $PKG/usr/share $PKG/bin/bashbug $PKG/usr/man/man1/bashbug.1
37 install -D -m 644 $SRC/profile $PKG/etc/profile
38 ln -sf bash $PKG/bin/sh
39 ln -sf bash.1 $PKG/usr/man/man1/sh.1
40 }