34 lines
1022 B
Bash
34 lines
1022 B
Bash
# Template file for 'chroot-bash'
|
|
pkgname=chroot-bash
|
|
_bash_distver=4.4
|
|
_bash_patchlevel=023
|
|
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>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://www.gnu.org/software/bash/bash.html"
|
|
distfiles="${GNU_SITE}/bash/bash-${_bash_distver}.tar.gz"
|
|
checksum=d86b3392c1202e8ff5a423b302e6284db7f8f435ea9f39b5b1b20fd3ac36dfcb
|
|
|
|
bootstrap=yes
|
|
provides="bash-${version}_${revision}"
|
|
conflicts="bash>=0 dash>=0"
|
|
|
|
pre_configure() {
|
|
local ver=${_bash_distver//./} p
|
|
cd ${wrksrc}
|
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
|
msg_normal " Applying patch bash${ver}-$p.\n"
|
|
patch -sNp0 -i ${XBPS_SRCPKGDIR}/bash/files/bash${ver}-${p}
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
ln -s bash ${DESTDIR}/usr/bin/sh
|
|
rm -rf ${DESTDIR}/usr/share
|
|
}
|