Juergen Daubert
4310e78b66
Security fixes for CVE-2016-7543 and CVE-2016-0634, see - https://lists.gnu.org/archive/html/bug-bash/2016-10/msg00008.html - https://lists.gnu.org/archive/html/bug-bash/2016-10/msg00009.html
26 lines
707 B
Plaintext
26 lines
707 B
Plaintext
# Description: An sh-compatible command language interpreter
|
|
# URL: http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: ncurses readline
|
|
|
|
name=bash
|
|
version=4.4
|
|
release=1
|
|
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
|
|
profile)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--exec-prefix= \
|
|
--disable-nls \
|
|
--with-curses \
|
|
--with-installed-readline
|
|
make -j1
|
|
|
|
install -D -m 755 bash $PKG/bin/bash
|
|
install -D -m 644 doc/bash.1 $PKG/usr/share/man/man1/bash.1
|
|
install -D -m 644 $SRC/profile $PKG/etc/profile
|
|
}
|