darling-shell_cmds/xcodescripts/install-files.sh

67 lines
2.3 KiB
Bash
Raw Permalink Normal View History

2015-12-20 19:27:02 +00:00
#!/bin/sh
set -e -x
BINDIR="$DSTROOT"/usr/bin
LIBEXECDIR="$DSTROOT"/usr/libexec
MANDIR="$DSTROOT"/usr/share/man
PAMDIR="$DSTROOT"/private/etc/pam.d
ln -f "$BINDIR/hexdump" "$BINDIR/od"
ln -f "$BINDIR/id" "$BINDIR/groups"
ln -f "$BINDIR/id" "$BINDIR/whoami"
ln -f "$BINDIR/w" "$BINDIR/uptime"
ln -f "$DSTROOT/bin/test" "$DSTROOT/bin/["
install -d -o root -g wheel -m 0755 "$BINDIR"
install -d -o root -g wheel -m 0755 "$MANDIR"/man1
install -d -o root -g wheel -m 0755 "$MANDIR"/man8
install -c -o root -g wheel -m 0755 "$SRCROOT"/alias/generic.sh "$BINDIR"/alias
install -c -o root -g wheel -m 0644 "$SRCROOT"/alias/builtin.1 "$MANDIR"/man1
set +x
for builtin in `cat "$SRCROOT/xcodescripts/builtins.txt"`; do
echo ... linking $builtin
ln -f "$BINDIR"/alias "$BINDIR/$builtin"
done
for manpage in `cat "$SRCROOT/xcodescripts/builtins-manpages.txt"`; do
echo ... linking $manpage
echo ".so man1/builtin.1" > "$MANDIR/man1/$manpage"
done
set -x
2023-02-20 04:54:09 +00:00
install -d -o root -g wheel -m 0755 "$DSTROOT"/AppleInternal/Tests/shell_cmds
install -o root -g wheel -m 0644 "$SRCROOT"/tests/regress.m4 \
"$DSTROOT"/AppleInternal/Tests/shell_cmds
install -d -o root -g wheel -m 0755 \
"$DSTROOT"/AppleInternal/Tests/shell_cmds/time
install -o root -g wheel -m 0644 "$SRCROOT"/time/tests/test_time.sh \
"$DSTROOT"/AppleInternal/Tests/shell_cmds/time
install -d -o root -g wheel -m 0755 \
"$DSTROOT"/AppleInternal/CoreOS/BATS/unit_tests
install -o root -g wheel -m 0644 "$SRCROOT"/tests/shell_cmds.plist \
"$DSTROOT"/AppleInternal/CoreOS/BATS/unit_tests
2015-12-20 19:27:02 +00:00
# Skip locate and su targets for iOS
if [ "$TARGET_NAME" = "All_iOS" ]; then
exit 0
fi
install -d -o root -g wheel -m 0755 "$LIBEXECDIR"
install -c -o root -g wheel -m 0755 "$SRCROOT"/locate/locate/updatedb.sh \
"$LIBEXECDIR"/locate.updatedb
install -c -o root -g wheel -m 0644 "$SRCROOT"/locate/locate/locate.updatedb.8 \
"$MANDIR"/man8
install -c -o root -g wheel -m 0755 "$SRCROOT"/locate/locate/concatdb.sh \
"$LIBEXECDIR"/locate.concatdb
echo ".so man8/locate.updatedb.8" > "$MANDIR"/man8/locate.concatdb.8
install -c -o root -g wheel -m 0755 "$SRCROOT"/locate/locate/mklocatedb.sh \
"$LIBEXECDIR"/locate.mklocatedb
echo ".so man8/locate.updatedb.8" > "$MANDIR"/man8/locate.mklocatedb.8
install -d -o root -g wheel -m 0755 "$PAMDIR"
install -c -o root -g wheel -m 0644 "$SRCROOT"/su/su.pam "$PAMDIR"/su