36e935fe0f
for each symbol, usually answering those "why is does my binary have such a lot of BSS" questions. - stop binpackage looking in /var/spool for package files. - let makewhatis recognize .Sh as heading name - setup, fsck, df: allow >4kB block sizes painlessly - mkfs: new #-of-inodes heuristic that depends on kb, not on blocks; i've run out of inodes on my /usr - asmconv: don't silently truncate .aligns to 16 bytes - ipc* commands for shared memory support
67 lines
1.3 KiB
Bash
67 lines
1.3 KiB
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
|
PI=.postinstall
|
|
INFO=.minixpackage
|
|
|
|
set -e
|
|
|
|
# No trailing slashes in the directory, because we want to base the
|
|
# package filename on it.
|
|
dir=`echo "$1" | sed 's/\/*$//'`
|
|
|
|
if [ $# -ne 2 ]
|
|
then echo "Usage: $0 sourcedir packagedir"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "$dir" ]
|
|
then echo "Error: $dir isn't a directory."
|
|
exit 1
|
|
fi
|
|
|
|
here=`pwd`
|
|
|
|
case "$dir" in
|
|
/*) srcdir="$dir" ;;
|
|
*) srcdir="$here/$dir" ;;
|
|
esac
|
|
|
|
case $2 in
|
|
/*) pdir="$2" ;;
|
|
*) pdir="$here/$2" ;;
|
|
esac
|
|
|
|
packagestart=$srcdir/now
|
|
findlist=$srcdir/findlist
|
|
tar=$srcdir/"`basename ${dir}`".tar
|
|
tarbz=$tar.bz2
|
|
|
|
mkdir $pdir 2>/dev/null || true
|
|
binsizes=big
|
|
rc=$dir/.binpackage
|
|
if [ -f $rc ]
|
|
then . $rc
|
|
fi
|
|
binsizes $binsizes
|
|
touch $packagestart
|
|
sleep 1
|
|
cd $dir
|
|
|
|
if [ ! -f build -a ! -f build.minix ]
|
|
then echo "Error: No build or build.minix script in $dir."
|
|
exit 1
|
|
fi
|
|
|
|
if [ -f build.minix ]
|
|
then sh -e build.minix
|
|
else sh -e build
|
|
fi
|
|
|
|
echo " * Building package"
|
|
echo "Minix package $dir built `date`." >$INFO
|
|
( echo $INFO ; if [ -f $PI ]; then echo $PI; fi; find / -cnewer $packagestart | egrep -v "^($srcdir|/(dev|tmp)|/usr/(src|tmp|log|adm|run)|/home|/etc/utmp|/var/(run|log|spool))" ) | pax -w -d | bzip2 >$tarbz
|
|
rm -f $packagestart $findlist $tarcmd
|
|
binsizes normal
|
|
mv $tarbz $pdir
|
|
exit 0
|