echo "---------- BUILDING DEBIAN UTILS --------------"

# debianutils.build
# Build the Debian utilities
# Based on the debian bit of the original Slackware bin.SlackBuild script

cd $TMP

tar xzf ${ORIGPATH}/source/debianutils_1.13.3.tar.gz
cd debianutils*

make -e

# Move files into the package.
mv mktemp /usr/bin/
mv savelog /usr/bin/
mv tempfile /usr/bin/

# Man pages
install -m644 savelog.8  /usr/man/man8/
install -m644 mktemp.1   /usr/man/man1/
install -m644 tempfile.1 /usr/man/man1/

# This does have some debian docs and I suspect we should include
# them within our bin package, but Slackware doesn't.
# I'll sort them later.

#EOF

