-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild-gnulib.sh
executable file
·184 lines (145 loc) · 4.46 KB
/
build-gnulib.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/usr/bin/env bash
# Written and placed in public domain by Jeffrey Walton
# This script builds Gnulib from sources.
# Gnulib is distributed as source from GitHub. No packages
# are available for download. Also see
# https://www.linux.com/news/using-gnulib-improve-software-portability
# Testing Gnulib is detailed at https://lists.gnu.org/archive/html/bug-gnulib/2017-05/msg00118.html.
GNULIB_VER=unknown
GNULIB_DIR=gnulib
GNULIB_TEST_DIR=gnulib_test
PKG_NAME=gnulib
###############################################################################
# Get the environment as needed.
if [[ "${SETUP_ENVIRON_DONE}" != "yes" ]]; then
if ! source ./setup-environ.sh
then
echo "Failed to set environment"
exit 1
fi
fi
if [[ -e "${INSTX_PKG_CACHE}/${PKG_NAME}" ]]; then
echo ""
echo "$PKG_NAME is already installed."
exit 0
fi
# The password should die when this subshell goes out of scope
if [[ "${SUDO_PASSWORD_DONE}" != "yes" ]]; then
if ! source ./setup-password.sh
then
echo "Failed to process password"
exit 1
fi
fi
###############################################################################
if ! ./build-cacert.sh
then
echo "Failed to install CA Certs"
exit 1
fi
###############################################################################
echo ""
echo "========================================"
echo "================ Gnulib ================"
echo "========================================"
echo ""
echo "Gnulib ${GNULIB_VER}..."
# Cleanup old artifacts in case of early out
rm -rf "$GNULIB_DIR" "$GNULIB_TEST_DIR" 2>/dev/null
echo ""
echo "*****************************"
echo "Cloning package"
echo "*****************************"
if ! git clone --depth=3 git://git.savannah.gnu.org/gnulib.git "$GNULIB_DIR"
then
echo ""
echo "*****************************"
echo "Failed to clone Gnulib"
echo "*****************************"
exit 1
fi
cd "$GNULIB_DIR" || exit 1
echo "Copying Gnulib sources"
if ! ./gnulib-tool --create-testdir --dir=../"$GNULIB_TEST_DIR" --avoid=gettext --single-configure --without-privileged-tests;
then
echo ""
echo "*****************************"
echo "Failed to copy Gnulib sources"
echo "*****************************"
exit 1
fi
cd "${CURR_DIR}" || exit 1
cd "$GNULIB_TEST_DIR" || exit 1
# Fix sys_lib_dlsearch_path_spec
bash "${INSTX_TOPDIR}/fix-configure.sh"
echo ""
echo "*****************************"
echo "Configuring package"
echo "*****************************"
PKG_CONFIG_PATH="${INSTX_PKGCONFIG}" \
CPPFLAGS="${INSTX_CPPFLAGS}" \
ASFLAGS="${INSTX_ASFLAGS}" \
CFLAGS="${INSTX_CFLAGS}" \
CXXFLAGS="${INSTX_CXXFLAGS}" \
LDFLAGS="${INSTX_LDFLAGS}" \
LIBS="${INSTX_LDLIBS}" \
./configure \
--build="${AUTOCONF_BUILD}" \
--prefix="${INSTX_PREFIX}" \
--libdir="${INSTX_LIBDIR}"
if [[ "$?" -ne 0 ]]; then
echo ""
echo "*****************************"
echo "Failed to configure Gnulib"
echo "*****************************"
bash "${INSTX_TOPDIR}/collect-logs.sh" "${PKG_NAME}"
exit 1
fi
# Escape dollar sign for $ORIGIN in makefiles. Required so
# $ORIGIN works in both configure tests and makefiles.
bash "${INSTX_TOPDIR}/fix-makefiles.sh"
echo ""
echo "*****************************"
echo "Building package"
echo "*****************************"
MAKE_FLAGS=("-j" "${INSTX_JOBS}")
if ! "${MAKE}" "${MAKE_FLAGS[@]}"
then
echo ""
echo "*****************************"
echo "Failed to build Gnulib"
echo "*****************************"
bash "${INSTX_TOPDIR}/collect-logs.sh" "${PKG_NAME}"
exit 1
fi
# Fix flags in *.pc files
bash "${INSTX_TOPDIR}/fix-pkgconfig.sh"
# Fix runpaths
bash "${INSTX_TOPDIR}/fix-runpath.sh"
echo ""
echo "*****************************"
echo "Testing package"
echo "*****************************"
MAKE_FLAGS=("check")
if ! "${MAKE}" "${MAKE_FLAGS[@]}"
then
echo ""
echo "*****************************"
echo "Failed to test Gnulib"
echo "*****************************"
bash "${INSTX_TOPDIR}/collect-logs.sh" "${PKG_NAME}"
exit 1
fi
###############################################################################
touch "${INSTX_PKG_CACHE}/${PKG_NAME}"
cd "${CURR_DIR}" || exit 1
###############################################################################
# Set to false to retain artifacts
if true;
then
ARTIFACTS=("$GNULIB_DIR" "$GNULIB_TEST_DIR")
for artifact in "${ARTIFACTS[@]}"; do
rm -rf "$artifact"
done
fi
exit 0