1994-06-15 20:15:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# This file will extract all of the FreeBSD secure distribution into
|
|
|
|
# ${EXTRACT_TARGET} if it is set, or / otherwise.
|
|
|
|
#
|
|
|
|
SOURCEDIR=.
|
|
|
|
if [ X"${EXTRACT_TARGET}" = X"" ]; then
|
|
|
|
EXTRACT_TARGET=/
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $SOURCEDIR
|
|
|
|
|
1994-06-28 07:28:28 +00:00
|
|
|
cat des_tgz.* | gunzip | tar --unlink --directory ${EXTRACT_TARGET} -xpf -
|
|
|
|
cat libcrypt.aa | gunzip | tar --unlink --directory ${EXTRACT_TARGET} -xpf -
|