-
Notifications
You must be signed in to change notification settings - Fork 35
/
bootstrap.sh
executable file
·76 lines (60 loc) · 2.34 KB
/
bootstrap.sh
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
#!/bin/sh
# Copyright (c) 2021 Mastercard
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
########################################################################
# bootstrap.sh: used to bootstrap project once cloned from git
# or during FreeBSD package build
########################################################################
# no tolerance to errors
set -e
cleanup() {
if [ -n ${oldpath} ]; then
cd ${oldpath}
fi
}
trap cleanup EXIT
oldpath=$PWD
cd ${oldpath}
# detect if we are in a git repo
if [ -d .git ]; then
# pull submodule stuff
git submodule update --init
# git submodule update --init .gnulib
# git submodule update --init include/oasis-pkcs11
# if running automake 1.13, checkout specific (older) commit
if (automake --version | head -1 | grep -q 1\.13); then
echo "Automake 1.13 detected, using an older, compatible version of gnulib"
cd .gnulib
git checkout 34e1754363b105180e7a85d319c2e1f464b93fb2
cd ..
fi
else
# if not a git repo, then two possibilities:
# 1) we are building a FreeBSD port, in which case
# BUILD_PORT is set
# 2) we are not, in which case we choke and die
#
if [ -z ${BUILD_PORT} ]; then
echo "***Error: $0 is not invoked from a git repository."
exit 1
fi
fi
# invoke gnulib
.gnulib/gnulib-tool --import --dir=. --lib=libgnu --source-base=gl --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=. --no-conditional-dependencies --no-libtool --macro-prefix=gl byteswap gethostname getline getopt-gnu malloc-gnu calloc-gnu realloc-gnu regex strcase strsep termios time sysexits minmax
# create configure scripts
autoreconf -vfi
# make sure configure script is executable
chmod +x ./configure
cat <<EOF
========================================================================
Bootstrap complete.
Execute './configure' and 'make' to build the project.
EOF