42 lines
1.3 KiB
Text
42 lines
1.3 KiB
Text
# Template build file for 'bash'.
|
|
pkgname=bash
|
|
_bash_distver=4.3
|
|
_bash_patchlevel=033
|
|
version=${_bash_distver}.${_bash_patchlevel}
|
|
revision=1
|
|
wrksrc=${pkgname}-${_bash_distver}
|
|
build_style=gnu-configure
|
|
configure_args="--without-bash-malloc --with-curses --with-installed-readline"
|
|
hostmakedepends="bison"
|
|
makedepends="ncurses-devel readline-devel>=6.3"
|
|
conflicts="chroot-bash>=0"
|
|
register_shell="/bin/bash"
|
|
short_desc="The GNU Bourne Again Shell"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.gnu.org/software/bash/bash.html"
|
|
license="GPL-3"
|
|
distfiles="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}.tar.gz"
|
|
checksum=afc687a28e0e24dc21b988fa159ff9dbcf6b7caa92ade8645cc6d5605cd024d4
|
|
|
|
pre_configure() {
|
|
local url="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}-patches"
|
|
local ver=$(echo ${_bash_distver}|sed "s|\.||g")
|
|
|
|
if [ "${_bash_patchlevel}" -gt 000 ]; then
|
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
|
if [ -f bash${ver}-${p} ]; then
|
|
continue
|
|
fi
|
|
msg_normal " Fetching ${url}/bash${ver}-$p ...\n"
|
|
$XBPS_FETCH_CMD ${url}/bash${ver}-$p
|
|
done
|
|
fi
|
|
cd ${wrksrc}
|
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
|
patch -sNp0 -i bash${ver}-${p}
|
|
msg_normal " Applying patch bash${ver}-$p.\n"
|
|
done
|
|
}
|
|
post_install() {
|
|
rm -r ${DESTDIR}/usr/share/doc
|
|
}
|