c2bfc6b7d5
+ To reduce bandwidth and download times, packages use bz2/lzma/xz where possible. + Also use ${GNU_SITE} and ${KERNEL_SITE} where appropriate. + Clean up xlint warnings. + inetutils: update to 1.9.3 and split into subpkgs
44 lines
1.3 KiB
Bash
44 lines
1.3 KiB
Bash
# Template build file for 'chroot-bash'.
|
|
pkgname=chroot-bash
|
|
_bash_distver=4.3
|
|
_bash_patchlevel=039
|
|
version=${_bash_distver}.${_bash_patchlevel}
|
|
revision=1
|
|
wrksrc="bash-${_bash_distver}"
|
|
build_style=gnu-configure
|
|
configure_args="--without-bash-malloc --without-curses --without-installed-readline --disable-nls"
|
|
short_desc="The GNU Bourne Again Shell -- for xbps-src use"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.gnu.org/software/bash/bash.html"
|
|
license="GPL-3"
|
|
distfiles="${GNU_SITE}/bash/bash-${_bash_distver}.tar.gz"
|
|
checksum=afc687a28e0e24dc21b988fa159ff9dbcf6b7caa92ade8645cc6d5605cd024d4
|
|
|
|
broken_as_needed=yes
|
|
bootstrap=yes
|
|
provides="bash-${version}_${revision}"
|
|
conflicts="bash>=0 dash>=0"
|
|
|
|
pre_configure() {
|
|
local url="${GNU_SITE}/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() {
|
|
ln -s bash ${DESTDIR}/usr/bin/sh
|
|
rm -rf ${DESTDIR}/usr/share
|
|
}
|