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
|
#!/bin/sh -e
# $Id: bootstrap,v 1.10 2006/01/29 20:07:33 joostvb Exp $
# bootstrap - script to bootstrap the distribution rolling engine
# This script is free software; you can distribute it and/or modify it
# under the terms of the GNU GPL. See the file COPYING.
# usage:
# ./bootstrap && ./configure && make distcheck
#
# this yields a tarball (and a .tar.bz2 too) 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. ftp.cygnus.com:/pub/tromey/
# cvs2cl, from http://www.red-bean.com/cvs2cl/ (see Makefile.am)
set -x
test -f ChangeLog || {
touch ChangeLog && cvs2cl --prune
}
test -f VERSION.m4 || ./setversion
AUTOMAKE=automake-1.9 ACLOCAL=aclocal-1.9 autoreconf --install --symlink
|