#!/bin/sh
# Set initial variables:
CWD=`pwd`
if [ "$TMP" = "" ]; then
  TMP=/tmp
fi
cd $TMP
tar xzvf $CWD/autoconf-2.50.tar.gz
cd autoconf-2.50
./configure --prefix=/usr
make
make install
mkdir -p /usr/doc/autoconf-2.50
cp -a AUTHORS BUGS COPYING INSTALL INSTALL.txt NEWS README THANKS TODO \
      /usr/doc/autoconf-2.50
chown root.root /usr/doc/autoconf-2.50/*
chmod 644 /usr/doc/autoconf-2.50/*
