core/bash/Pkgfile

26 lines
711 B
Plaintext
Raw Normal View History

2007-03-26 17:38:16 +02:00
# Description: An sh-compatible command language interpreter
2006-02-23 16:26:10 +01:00
# URL: http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2010-06-03 12:27:14 +02:00
# Depends on: ncurses readline
2006-02-23 16:26:10 +01:00
name=bash
2016-08-23 16:44:18 +02:00
version=4.4-rc2
release=1
2016-07-13 14:29:11 +02:00
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
profile)
2006-02-23 16:26:10 +01:00
build() {
2016-07-13 14:29:11 +02:00
cd $name-$version
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr \
2007-03-06 17:29:08 +01:00
--exec-prefix= \
2007-08-23 10:36:39 +02:00
--disable-nls \
2010-06-03 12:27:14 +02:00
--with-curses \
--with-installed-readline
2010-05-16 20:14:05 +02:00
make -j1
2007-03-26 17:38:16 +02:00
2009-05-04 18:33:23 +02:00
install -D -m 755 bash $PKG/bin/bash
2015-07-25 19:28:55 +02:00
install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
2006-12-25 17:28:46 +01:00
install -D -m 644 $SRC/profile $PKG/etc/profile
2006-02-23 16:26:10 +01:00
}