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
39 lines
946 B
Text
Executable file
39 lines
946 B
Text
Executable file
app=coreutils
|
|
version=8.32
|
|
build=1sml
|
|
homepage='https://www.gnu.org/software/coreutils/coreutils.html'
|
|
download='http://ftp.gnu.org/gnu/coreutils/coreutils-8.32.tar.xz'
|
|
desc="Core GNU utilities"
|
|
requires="attr acl"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
patch -p1 < $srcdir/ls.patch
|
|
|
|
FORCE_UNSAFE_CONFIGURE=1 \
|
|
CFLAGS="$CFLAGS -static" \
|
|
./configure \
|
|
--prefix="" \
|
|
--bindir=/bin \
|
|
--libexecdir=/lib \
|
|
--without-gmp \
|
|
--disable-nls
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
e4473c87948904b017fef23d1c81cafdf0d6d282cd6dd9d402d3dc718642f392029933cd7b161f73d6b69523ca12458066ba2804201a1ce256da753fa521f54c coreutils-8.32.tar.lz
|
|
2742d74c45bdb52c524d415fb0787ed63164aec2c22980a1c46b40b7db2f0911008161b1219d5b571cc25de274bacc20c8be3f651906967a032a3ac9859cffce ls.patch
|
|
"
|