core/bash/Pkgfile

28 lines
800 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
2017-10-24 12:44:03 +02:00
# Depends on: readline
2006-02-23 16:26:10 +01:00
name=bash
2018-06-01 16:06:44 +02:00
version=4.4.23
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-${version:0:3}.tar.gz \
2017-02-15 18:56:58 +01:00
$name-$version.patch.gz profile)
2006-02-23 16:26:10 +01:00
build() {
2017-02-15 18:56:58 +01:00
cd $name-${version:0:3}
gunzip -c $SRC/$name-$version.patch.gz | patch -p0
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
}