2012-02-28 09:21:11 +00:00
|
|
|
# Template build file for 'chroot-bash'.
|
|
|
|
pkgname=chroot-bash
|
2014-09-25 18:29:21 +00:00
|
|
|
_bash_distver=4.3
|
2014-10-06 06:34:04 +00:00
|
|
|
_bash_patchlevel=030
|
2014-09-25 18:29:21 +00:00
|
|
|
version=${_bash_distver}.${_bash_patchlevel}
|
2014-10-01 20:29:00 +00:00
|
|
|
revision=1
|
2014-09-25 18:29:21 +00:00
|
|
|
wrksrc="bash-${_bash_distver}"
|
2012-02-28 09:21:11 +00:00
|
|
|
build_style=gnu-configure
|
2014-03-15 08:04:24 +00:00
|
|
|
configure_args="--without-bash-malloc --without-curses --without-installed-readline --disable-nls"
|
2012-02-28 09:21:11 +00:00
|
|
|
short_desc="The GNU Bourne Again Shell -- for xbps-src use"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
homepage="http://www.gnu.org/software/bash/bash.html"
|
|
|
|
license="GPL-3"
|
2014-09-25 18:29:21 +00:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}.tar.gz"
|
2014-02-27 06:26:57 +00:00
|
|
|
checksum=afc687a28e0e24dc21b988fa159ff9dbcf6b7caa92ade8645cc6d5605cd024d4
|
2012-02-28 09:21:11 +00:00
|
|
|
|
|
|
|
broken_as_needed=yes
|
|
|
|
bootstrap=yes
|
2014-01-28 17:03:59 +00:00
|
|
|
provides="bash-${version}_${revision}"
|
2014-01-01 15:10:11 +00:00
|
|
|
conflicts="bash>=0"
|
2012-02-28 09:21:11 +00:00
|
|
|
|
2014-09-25 18:29:21 +00:00
|
|
|
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
|
|
|
|
}
|
2012-02-28 09:21:11 +00:00
|
|
|
post_install() {
|
2014-01-28 17:03:59 +00:00
|
|
|
ln -s /bin/bash ${DESTDIR}/usr/bin/sh
|
2012-02-28 09:21:11 +00:00
|
|
|
rm -rf ${DESTDIR}/usr/share
|
|
|
|
}
|