vp-build/srcpkgs/bash/template

52 lines
2.0 KiB
Plaintext
Raw Normal View History

# Template build file for 'bash'.
pkgname=bash
2011-02-14 16:07:24 +01:00
_bash_distver=4.2
2013-03-13 09:35:38 +01:00
_bash_patchlevel=045
2011-03-03 13:23:02 +01:00
version=${_bash_distver}.${_bash_patchlevel}
revision=3
2011-03-03 13:23:02 +01:00
#version=${_bash_distver}
wrksrc=${pkgname}-${_bash_distver}
build_style=gnu-configure
configure_args="--without-bash-malloc --with-curses --with-installed-readline
bash_cv_under_sys_siglist=yes bash_cv_unusable_rtsigs=no
bash_cv_void_sighandler=yes bash_cv_wcontinued_broken=no
bash_cv_sys_named_pipes=present bash_cv_job_control_missing=present
bash_cv_wexitstatus_offset=8 bash_cv_must_reinstall_sighandlers=no
bash_cv_opendir_not_robust=no bash_cv_signal_vintage=posix
bash_cv_getenv_redef=yes bash_cv_getpw_declared=yes
bash_cv_func_sigsetjmp=present bash_cv_ulimit_maxfds=yes
bash_cv_getcwd_malloc=yes bash_cv_under_sys_siglist=yes
bash_cv_sys_siglist=yes bash_cv_func_ctype_nonascii=no
bash_cv_dup2_broken=no bash_cv_pgrp_pipe=no bash_cv_printf_a_format=yes
bash_cv_func_strcoll_broken=no bash_cv_func_vsnprintf=yes"
makedepends="readline-devel bison"
2013-02-07 00:41:13 +01:00
crossmakedepends="readline-devel"
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"
2011-02-14 16:07:24 +01:00
checksum=a27a1179ec9c0830c65c6aa5d7dab60f7ce1a2a608618570f96bfa72e95ab3d8
2013-03-13 09:35:38 +01:00
conflicts="chroot-bash>=0"
register_shell="/bin/bash"
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
cd ${XBPS_SRCDISTDIR} || return 1
for p in $(seq -w 001 ${_bash_patchlevel}); do
2011-03-03 13:23:02 +01:00
[ -f ${XBPS_SRCDISTDIR}/bash${ver}-${p} ] && continue
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
2011-03-03 13:23:02 +01:00
patch -s -Np0 -i ${XBPS_SRCDISTDIR}/bash${ver}-${p} && \
msg_normal " Applying patch bash${ver}-$p.\n"
done
}