obsolete due to alpine policy
[oweals/gnunet.git] / bootstrap
1 #!/bin/sh
2 # This file is in the public domain.
3 echo "Removing folder 'libltdl'..."
4 rm -rf libltdl
5
6 # This is more portable than `which' but comes with
7 # the caveat of not(?) properly working on busybox's ash:
8 existence()
9 {
10     command -v "$1" >/dev/null 2>&1
11 }
12
13
14 if existence uncrustify; then
15     echo "Installing uncrustify hook and configuration"
16     # Install uncrustify format symlink (if possible)
17     ln -s contrib/uncrustify.cfg uncrustify.cfg 2> /dev/null
18     # Install pre-commit hook (if possible)
19     ln -s ../../contrib/uncrustify_precommit .git/hooks/pre-commit 2> /dev/null
20 else
21     echo "Uncrustify not detected, hook not installed. Please install uncrustify if you plan on doing development"
22 fi
23
24
25 # yapf can be a suffixed binary, don't change the essential logic
26 # of this if you change it.
27 if existence yapf || existence yapf3.0 || existence yapf3.1 || existence yapf3.2 || existence yapf3.3 || existence yapf3.4 || existence yapf3.5 || existence yapf3.6 || existence yapf3.7 || existence yapf3.8 || existence yapf3.9 || existence yapf4.0; then
28     echo "Installing yapf symlink"
29     # Install yapf style symlink (if possible)
30     ln -s contrib/conf/.style.yapf 2> /dev/null
31 else
32     echo "yapf not detected, please install yapf if you plan on contributing python code"
33 fi
34
35
36 echo "checking for libtoolize / libtool... "
37
38 if existence libtool || existence libtoolize || existence glibtoolize || existence slibtool; then
39     autoreconf -if
40     . "bin/pogen.sh"
41 else
42     echo "*** No libtoolize (libtool) or libtool found, please install it ***" >&2;
43     exit 1
44 fi