vp-build/srcpkgs/bash/template

45 lines
1.3 KiB
Bash
Raw Normal View History

# 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
2014-12-31 08:28:07 +01:00
_bash_patchlevel=033
2011-03-03 13:23:02 +01:00
version=${_bash_distver}.${_bash_patchlevel}
2015-03-18 09:50:33 +01:00
revision=4
wrksrc=${pkgname}-${_bash_distver}
build_pie=yes
build_style=gnu-configure
2014-03-15 09:02:52 +01:00
configure_args="--without-bash-malloc --with-curses --with-installed-readline"
hostmakedepends="bison"
makedepends="ncurses-devel readline-devel"
conflicts="chroot-bash>=0"
register_shell="/bin/bash"
short_desc="The GNU Bourne Again Shell"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-05-31 09:36:43 +02:00
homepage="http://www.gnu.org/software/bash/bash.html"
license="GPL-3"
2012-07-09 17:12:59 +02:00
distfiles="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}.tar.gz"
2014-02-27 07:14:13 +01:00
checksum=afc687a28e0e24dc21b988fa159ff9dbcf6b7caa92ade8645cc6d5605cd024d4
CFLAGS="-DSYS_BASHRC='\"/etc/bash/bashrc\"'"
2012-02-28 10:21:44 +01:00
pre_configure() {
local url="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}-patches"
2011-03-03 13:23:02 +01:00
local ver=$(echo ${_bash_distver}|sed "s|\.||g")
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
done
fi
cd ${wrksrc}
for p in $(seq -w 001 ${_bash_patchlevel}); do
patch -sNp0 -i bash${ver}-${p}
2014-08-11 07:27:44 +02:00
msg_normal " Applying patch bash${ver}-$p.\n"
done
}
2014-10-10 08:33:01 +02:00
post_install() {
rm -r ${DESTDIR}/usr/share/doc
}