CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
16de649d599fb831ee2feab9e5191f66faff1aa7
[ports/core-arm.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, devel at crux-arm dot nu
5 # Depends on: ncurses readline
6
7 name=bash
8 version=4.4
9 release=1
10 source=(http://ftp.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \
11 profile)
12
13 build() {
14 cd $name-${version:0:3}
15
16 ./configure --prefix=/usr \
17 --build=arm-unknown-linux-gnueabihf \
18 --exec-prefix= \
19 --disable-nls \
20 --with-curses \
21 --with-installed-readline
22 make -j1
23
24 install -D -m 755 bash $PKG/bin/bash
25 install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
26 install -D -m 644 $SRC/profile $PKG/etc/profile
27 }