2008-10-14 18:41:37 +02:00
|
|
|
# Template build file for 'bash'.
|
2015-03-04 19:54:36 +01:00
|
|
|
pkgname=bash
|
2014-02-27 07:14:13 +01:00
|
|
|
_bash_distver=4.3
|
2015-08-29 16:48:24 +02:00
|
|
|
_bash_patchlevel=042
|
2011-03-03 13:23:02 +01:00
|
|
|
version=${_bash_distver}.${_bash_patchlevel}
|
2015-10-31 13:35:27 +01:00
|
|
|
revision=3
|
2010-05-18 00:41:57 +02:00
|
|
|
wrksrc=${pkgname}-${_bash_distver}
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2014-03-15 09:02:52 +01:00
|
|
|
configure_args="--without-bash-malloc --with-curses --with-installed-readline"
|
2013-03-24 10:21:58 +01:00
|
|
|
hostmakedepends="bison"
|
2015-03-27 10:50:40 +01:00
|
|
|
makedepends="ncurses-devel readline-devel"
|
2014-01-01 16:10:11 +01:00
|
|
|
conflicts="chroot-bash>=0"
|
|
|
|
register_shell="/bin/bash"
|
2008-10-14 18:41:37 +02:00
|
|
|
short_desc="The GNU Bourne Again Shell"
|
2015-04-10 09:16:30 +02:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2011-05-31 09:36:43 +02:00
|
|
|
homepage="http://www.gnu.org/software/bash/bash.html"
|
|
|
|
license="GPL-3"
|
2015-05-22 11:47:56 +02:00
|
|
|
distfiles="${GNU_SITE}/$pkgname/$pkgname-${_bash_distver}.tar.gz"
|
2015-03-04 22:43:19 +01:00
|
|
|
CFLAGS="-DSYS_BASHRC='\"/etc/bash/bashrc\"'"
|
2015-06-23 17:17:09 +02:00
|
|
|
make_dirs="/etc/bash/bashrc.d 755 root root"
|
|
|
|
checksum=afc687a28e0e24dc21b988fa159ff9dbcf6b7caa92ade8645cc6d5605cd024d4
|
2008-10-22 02:43:51 +02:00
|
|
|
|
2015-10-31 11:23:58 +01:00
|
|
|
alternatives="
|
2015-10-31 13:35:27 +01:00
|
|
|
sh:sh:/usr/bin/bash
|
|
|
|
sh:sh.1:/usr/share/man/man1/bash.1"
|
2015-10-31 11:23:58 +01:00
|
|
|
|
2012-02-28 10:21:44 +01:00
|
|
|
pre_configure() {
|
2015-05-22 11:47:56 +02:00
|
|
|
local url="${GNU_SITE}/$pkgname/$pkgname-${_bash_distver}-patches"
|
2011-03-03 13:23:02 +01:00
|
|
|
local ver=$(echo ${_bash_distver}|sed "s|\.||g")
|
2009-10-17 03:16:09 +02:00
|
|
|
|
2010-05-18 00:41:57 +02:00
|
|
|
if [ "${_bash_patchlevel}" -gt 000 ]; then
|
|
|
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
2014-04-04 12:12:20 +02:00
|
|
|
if [ -f bash${ver}-${p} ]; then
|
|
|
|
continue
|
|
|
|
fi
|
2011-03-03 13:23:02 +01:00
|
|
|
msg_normal " Fetching ${url}/bash${ver}-$p ...\n"
|
|
|
|
$XBPS_FETCH_CMD ${url}/bash${ver}-$p
|
2009-08-02 16:06:53 +02:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
cd ${wrksrc}
|
2010-05-18 00:41:57 +02:00
|
|
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
2014-09-25 20:29:21 +02:00
|
|
|
patch -sNp0 -i bash${ver}-${p}
|
2014-08-11 07:27:44 +02:00
|
|
|
msg_normal " Applying patch bash${ver}-$p.\n"
|
2009-08-02 16:06:53 +02:00
|
|
|
done
|
|
|
|
}
|
2014-10-10 08:33:01 +02:00
|
|
|
post_install() {
|
|
|
|
rm -r ${DESTDIR}/usr/share/doc
|
2015-04-07 09:05:34 +02:00
|
|
|
ln -s bash ${DESTDIR}/usr/bin/rbash
|
2015-06-23 17:17:09 +02:00
|
|
|
vmkdir /etc/bash
|
2015-06-25 08:25:39 +02:00
|
|
|
vinstall ${FILESDIR}/bashrc 644 etc/bash
|
2015-08-04 14:13:25 +02:00
|
|
|
vinstall ${FILESDIR}/bash.sh 644 etc/profile.d
|
2014-10-10 08:33:01 +02:00
|
|
|
}
|