1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/bin/bash
# bootstrap - script to bootstrap the distribution rolling engine
# usage:
# $ sh ./bootstrap && ./configure && make dist[check]
#
# this yields a tarball which one can install doing
#
# $ tar zxf PACKAGENAME-*.tar.gz
# $ cd PACKAGENAME-*
# $ ./configure
# $ make
# # make install
# requirements:
# GNU autoconf, from e.g. ftp.gnu.org:/pub/gnu/autoconf/
# GNU automake, from e.g. http://ftp.gnu.org/gnu/automake/
automake=automake
aclocal=aclocal
# inspired by hack as used in mcl (from http://micans.org/)
# autoconf-archive Debian package, aclocal-archive RPM, obsolete/badly supported OS, installed in home dir
acdirs="/usr/share/autoconf-archive/ /usr/share/aclocal/ /usr/local/share/aclocal/ $HOME/local/share/autoconf-archive/ /opt/homebrew/share/aclocal/"
found=false
for d in $acdirs
do
if test -f ${d}pkg.m4
then
found=true
break
fi
done
if ! $found
then
cat <<EOT
You need the autoconf-archive Debian package, or the aclocal-archive
RPM package. Alternatively, you could install the GNU Autoconf Macro
Archive: https://www.gnu.org/software/autoconf-archive/
EOT
exit 1
fi
if $automake --version|head -1 |grep ' 1\.[4-8]'; then
echo "automake 1.4-1.8 is active. You should use automake 1.9 or later"
if test -f /etc/debian_version; then
echo " sudo apt-get install automake1.9"
echo " sudo update-alternatives --config automake"
fi
exit 1
fi
if $aclocal --version|head -1 |grep ' 1\.[4-8]'; then
echo "aclocal 1.4-1.8 is active. You should use aclocal 1.9 or later"
if test -f /etc/debian_version; then
echo " sudo apt-get install aclocal1.9"
echo " sudo update-alternatives --config aclocal"
fi
exit 1
fi
# Debian automake package installs as automake-version. Use this
# to make sure the right automake is being used.
# if not installed, use: apt-get install automake1.9
AUTOMAKE=automake ACLOCAL=aclocal autoreconf --install \
--symlink
# add --make if you want to run "make" too.
# autoreconf should run something like:
#
# aclocal-1.9 \
# && automake-1.9 --add-missing --verbose --gnu \
# && autoconf
|