mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-19 19:34:18 +08:00
65 lines
669 B
Bash
65 lines
669 B
Bash
GIT=https://github.com/redox-os/uutils.git
|
|
GIT_UPSTREAM=https://github.com/uutils/coreutils.git
|
|
CARGOFLAGS="--no-default-features --features redox"
|
|
|
|
BINS=(
|
|
base32
|
|
base64
|
|
basename
|
|
chmod
|
|
cksum
|
|
comm
|
|
cp
|
|
cut
|
|
date
|
|
dircolors
|
|
dirname
|
|
echo
|
|
env
|
|
expand
|
|
expr
|
|
factor
|
|
false
|
|
fmt
|
|
fold
|
|
head
|
|
install
|
|
link
|
|
ls
|
|
mktemp
|
|
mv
|
|
od
|
|
paste
|
|
printenv
|
|
printf
|
|
pwd
|
|
readlink
|
|
realpath
|
|
relpath
|
|
rm
|
|
rmdir
|
|
seq
|
|
shuf
|
|
sleep
|
|
split
|
|
sum
|
|
tac
|
|
tee
|
|
tr
|
|
true
|
|
truncate
|
|
tsort
|
|
unexpand
|
|
uniq
|
|
wc
|
|
yes
|
|
)
|
|
|
|
function recipe_stage {
|
|
mkdir -p "$1/bin"
|
|
for bin in "${BINS[@]}"
|
|
do
|
|
ln -s uutils "$1/bin/$bin"
|
|
done
|
|
}
|