minix/commands/scripts/packit.sh

52 lines
703 B
Bash
Raw Normal View History

#!/bin/sh
PI=.postinstall
TMP=/usr/tmp
2006-02-17 14:10:37 +01:00
PATH=/bin:/usr/bin:/usr/local/bin
if [ "$#" -ne 1 ]
then
echo "Usage: $0 <package file>"
exit 1
fi
dir=`pwd`
if [ "$1" = "-" ]
then f=""
2006-03-17 16:32:14 +01:00
else case "$1" in
/*) f="$1" ;;
*) f="$dir/$1" ;;
esac
fi
cd $TMP
rm -f $PI
if [ -f $PI ]
then echo "$PI is in $TMP, please remove it first."
exit 1
fi
if [ ! -f $f ]
then echo "Couldn't find package $f."
exit 1
fi
# can we execute bunzip2?
if bunzip2 --help 2>&1 | grep usage >/dev/null
then BUNZIP2=bunzip2
else BUNZIP2=smallbunzip2
fi
cat $f | $BUNZIP2 | pax -r -p e
if [ -f $PI ]
then
sh -e $PI
rm -f $PI
fi
2006-03-17 09:15:13 +01:00
makewhatis /usr/man
makewhatis /usr/local/man
makewhatis /usr/gnu/man
2006-04-03 15:06:22 +02:00
makewhatis /usr/X11R6/man