mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-20 15:22:24 +01:00
71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Contributor: Michael Mason <ms13sp@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=coreutils
|
|
pkgver=9.1
|
|
pkgrel=0
|
|
pkgdesc="The basic file, shell and text manipulation utilities"
|
|
url="https://www.gnu.org/software/coreutils/"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="bash acl-dev attr-dev utmps-dev perl automake autoconf"
|
|
subpackages="$pkgname-doc"
|
|
install="$pkgname.post-deinstall"
|
|
source="https://ftp.gnu.org/gnu/coreutils/coreutils-$pkgver.tar.xz
|
|
"
|
|
options="!check"
|
|
|
|
# secfixes:
|
|
# 8.30-r0:
|
|
# - CVE-2017-18018
|
|
|
|
build() {
|
|
CFLAGS="$CFLAGS -I/usr/include/utmps" LIBS="-lutmps -lskarnet -lrt" ./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--disable-nls \
|
|
--enable-no-install-program=hostname,su,kill,uptime \
|
|
--enable-single-binary=symlinks
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
rm -rf "$pkgdir"/usr/lib/charset.alias
|
|
rmdir -p "$pkgdir"/usr/lib 2>/dev/null || true
|
|
|
|
install -d "$pkgdir"/bin "$pkgdir"/usr/sbin
|
|
cd "$pkgdir"/usr/bin/
|
|
|
|
# binaries that busybox puts in /bin
|
|
local busybox_bin="base64 cat chgrp chmod chown cp date dd df echo false ln ls
|
|
mkdir mknod mktemp mv nice printenv pwd rm rmdir sleep stat stty sync touch true uname"
|
|
|
|
# as these binaries live in /bin on busybox, we want to put them in /bin with coreutils
|
|
for i in $busybox_bin; do
|
|
rm "$pkgdir"/usr/bin/$i
|
|
ln -s ../usr/bin/coreutils "$pkgdir"/bin/$i
|
|
done
|
|
|
|
# chroot lives in /usr/sbin with busybox
|
|
rm "$pkgdir"/usr/bin/chroot
|
|
ln -s ../bin/coreutils "$pkgdir"/usr/sbin/chroot
|
|
|
|
# resolve conflict between shadow and coreutils for cmd:groups
|
|
rm "$pkgdir"/usr/bin/groups
|
|
}
|
|
|
|
# XXX - some gnulib tests broken, find a way to patch out gnulib tests
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
sha512sums="
|
|
a6ee2c549140b189e8c1b35e119d4289ec27244ec0ed9da0ac55202f365a7e33778b1dc7c4e64d1669599ff81a8297fe4f5adbcc8a3a2f75c919a43cd4b9bdfa coreutils-9.1.tar.xz
|
|
"
|