18 lines
372 B
Markdown
18 lines
372 B
Markdown
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 \
|
|
--prefix=/pkg/gnu/coreutils
|
|
make -j$(nproc)
|
|
make install
|
|
```
|
|
|
|
``` sh *** config ***
|
|
mkdir -p share/zsh/zshrc-auto.d
|
|
echo "alias ls='ls --color=auto'" > share/zsh/zshrc-auto.d/coreutils.zsh
|
|
```
|