2025-08-26 04:41:14 +03:00
|
|
|
coreutils 9.6
|
|
|
|
|
=
|
|
|
|
|
https://ftp.gnu.org/gnu/coreutils/coreutils-9.6.tar.xz
|
|
|
|
|
|
|
|
|
|
``` sh *** build ***
|
|
|
|
|
FORCE_UNSAFE_CONFIGURE=1 \
|
|
|
|
|
./configure \
|
|
|
|
|
--enable-install-program=hostname \
|
2026-03-27 13:13:52 +03:00
|
|
|
--prefix=/pkg/gnu/coreutils
|
|
|
|
|
make -j$(nproc)
|
|
|
|
|
make install
|
2025-08-26 04:41:14 +03:00
|
|
|
```
|
2026-09-10 16:59:11 +03:00
|
|
|
|
|
|
|
|
``` sh *** config ***
|
|
|
|
|
mkdir -p share/zsh/zshrc-auto.d
|
|
|
|
|
echo "alias ls='ls --color=auto'" > share/zsh/zshrc-auto.d/coreutils.zsh
|
|
|
|
|
```
|