e0030bc0fe
- Added an additional shell func to add full (build/run), build or run time dependencies to packages. An optional third parameter can be used to specify other version than the one set in the depends file. - Use a "depends" file in package directory to specify minimum required ABI/API version for a package, so that there's no need to set the version all the time in pkgs. - Updated bash to 4.0. --HG-- extra : convert_revision : 1aa0ce32d4bdc2cd371eac19ae7bcff2c986b6b3
27 lines
1.1 KiB
Text
27 lines
1.1 KiB
Text
# Template build file for 'bash'.
|
|
pkgname=bash
|
|
version=4.0
|
|
distfiles="http://ftp.gnu.org/gnu/bash/bash-$version.tar.gz"
|
|
build_style=gnu_configure
|
|
configure_args="--without-bash-malloc --with-curses
|
|
--bindir=$XBPS_DESTDIR/$pkgname-$version/bin
|
|
ac_cv_func_working_mktime=yes"
|
|
short_desc="The GNU Bourne Again Shell"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=9793d394f640a95030c77d5ac989724afe196921956db741bcaf141801c50518
|
|
long_desc="
|
|
Bash is an sh-compatible shell that incorporates useful features from
|
|
the Korn shell (ksh) and C shell (csh). It is intended to conform to
|
|
the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard.
|
|
|
|
It offers functional improvements over sh for both programming and
|
|
interactive use; these include command line editing, unlimited size
|
|
command history, job control, shell functions and aliases, indexed
|
|
arrays of unlimited size, and integer arithmetic in any base from two
|
|
to sixty-four. In addition, most sh scripts can be run by Bash without
|
|
modification."
|
|
|
|
base_chroot=yes
|
|
|
|
Add_dependency run glibc
|
|
Add_dependency full ncurses
|