all repos — openbox @ 96f64be368e434274f2fbf44aa153b656f7eff1e

openbox fork - make it a bit more like ryudo

bootstrap (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh

sh() {
  /bin/sh -c "set -x; $*"
}

export WANT_AUTOMAKE=1.11

sh autopoint --force || exit 1 # for GNU gettext
sh libtoolize --copy --force --automake || exit 1
sh aclocal -I m4 $ACLOCAL_FLAGS || exit 1
#sh autoheader || exit 1
sh autoconf || exit 1
sh automake --include-deps --add-missing --copy || exit 1

echo
echo You are now ready to run ./configure
echo enjoy!