prevent accidents with the general build environment. More changes in the build system and other section build files to follow. -> Fixed library path in base/libical build file to prevent creation of lib64 directory -> Fixed code that searches for an SMBuild file inside a package installer when installing from a package using base/pkgtools's installpkg script -> Added a missing brace in base/findutils build file -> Upgraded base/ntfs-3g to 2021.8.22 -> Temporarily removed rm -f command used to discard man pages in base/openssl build file -> Added if/else check in base/rust build file to only extract rust toolchain in the absence of rust installation on the system -> Upgraded base/syssstat to 12.5.5
42 lines
888 B
Text
Executable file
42 lines
888 B
Text
Executable file
app=bash
|
|
version=5.0
|
|
build=1sml
|
|
homepage='https://www.gnu.org/software/bash/bash.html'
|
|
download='https://ftp.gnu.org/gnu/bash/bash-5.0.tar.gz'
|
|
requires="netbsd-curses"
|
|
desc="GNU Bourne-Again SHell"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
bash_cv_getenv_redef=no \
|
|
bash_cv_sys_named_pipes=yes \
|
|
ac_cv_rl_version=5.0 \
|
|
LDFLAGS="-static" \
|
|
./configure \
|
|
--prefix="" \
|
|
--bindir=/bin \
|
|
--sysconfdir=/etc \
|
|
--without-bash-malloc \
|
|
--disable-rpath \
|
|
--enable-history \
|
|
--disable-nls
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
( cd $pkg/bin ; ln -s bash sh )
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
5795c200a1f930caa1b984006498ea1ecae6fd9f73aa039ccc02403e4b2db0cc0999d47b00dc92eefe1ae25b189b43ca5e3d052606b535ea8712f3e3f6f39470 bash-5.0.tar.lz
|
|
"
|