]> git.draconx.ca Git - slotifier.git/blob - bootstrap
460094faeb31f30c414193311508dfc0ba666481
[slotifier.git] / bootstrap
1 #!/bin/sh
2 #
3 # Copyright © 2011-2012 Nick Bowler
4 #
5 # Simple script to get started from a fresh git checkout.
6 #
7 # License WTFPL2: Do What The Fuck You Want To Public License, version 2.
8 # This is free software: you are free to do what the fuck you want to.
9 # There is NO WARRANTY, to the extent permitted by law.
10
11 scriptname=$0
12
13 err() {
14         printf '%s: %s\n' "$scriptname" "$@" 1>&2
15 }
16
17 die() {
18         err "$@"
19         exit 1
20 }
21
22 : ${AUTORECONF=autoreconf}
23 : ${GNULIB=gnulib}
24 : ${GIT=git}
25 : ${PERL=perl}
26
27 $GIT submodule update --init || err "Failed to update submodules from git."
28
29 if test -x $GNULIB/gnulib-tool; then
30         $GNULIB/gnulib-tool --update -S || die "Failed to update Gnulib."
31 else
32         die "Gnulib sources are not properly installed in gnulib/."
33 fi
34
35 $PERL common/scripts/fix-gnulib.pl -o lib/gnulib.mk -i lib/gnulib.mk.in \
36         || die "Failed to fixup Gnulib makefile fragment."
37
38 # Punt some automake-generated files so that Gentoo's wrapper script doesn't
39 # try to detect the automake version in use.
40 rm -f Makefile.in aclocal.m4
41 $AUTORECONF -fis