-
Notifications
You must be signed in to change notification settings - Fork 66
/
create_gpg.sh
executable file
·558 lines (462 loc) · 18.3 KB
/
create_gpg.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
#!/bin/bash
# This file is licensed under the GNU Lesser General Public License v3.0
# See https://www.gnu.org/licenses/lgpl-3.0.txt for a copy of the license
#
# Usage: ./create_gpg
BASE_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")"; pwd -P)
CACHE_DIR=${CACHE_DIR:-$BASE_DIR/../Caches}
WORKING_DIR=$BASE_DIR/build
BUILD_DIR=$WORKING_DIR/build
DIST_DIR=$WORKING_DIR/dist
UNIVERSAL_DIST_DIR=${DIST_DIR}/universal
FINAL_DIR=$WORKING_DIR/MacGPG2
TARGET_DIR=/usr/local/MacGPG2
TOOL="$1"
# Files in bin and libexec, which are copied to the MacGPG2 dir.
BIN_FILES=(gpg gpg-agent gpg-connect-agent gpg-error gpgconf gpgparsemail gpgsm gpgsplit gpgtar gpgv kbxutil watchgnupg dirmngr-client dirmngr mpicalc dumpsexp hmac256)
LIBEXEC_FILES=(dirmngr_ldap gpg-preset-passphrase scdaemon gpg-check-pattern gpg-protect-tool gpg-wks-client)
export MACOSX_DEPLOYMENT_TARGET=10.15
MACOS_MIN_VERSION="-mmacosx-version-min=${MACOSX_DEPLOYMENT_TARGET:?}"
MACOS_SDK_PATH="$(xcrun --sdk macosx --show-sdk-path)"
# By default during compilation macOS picks Command Line Tools binaries
# (gcc, clang and others) over installed Xcode.app binaries.
# These binaries by default use the SDK (includes the headers and libs) for the platform version
# they are run on. SDKs for macOS < Big Sur are not able to compile
# binaries for arm64 and such that leads to a binary which fails to run on M1 processors.
# Example error: symbol not found in flat namespace '_BC'
#
# In order to make sure that always Xcode.app binaries the SDKROOT has to point
# to the correct SDK within Xcode.app on macOS < Big Sur
#
# xcrun --show-sdk-path returns the path for the SDK path in case Command Line Tools
# are installed
#
# xcrun --sdk macosx --show-sdk-path however returns the SDK within Xcode.app
export SDKROOT="$MACOS_SDK_PATH"
# Prepare logging.
mkdir -p "$WORKING_DIR" "$BUILD_DIR" "$DIST_DIR" "$CACHE_DIR"
if [[ -t 2 ]]; then
HAVE_TERMINAL=1
exec &> >(tee >(tr -u "\033" "#" | sed -E 's/#\[[0-9][^m]*m//g' >> "$WORKING_DIR/create_gpg.log"))
else
HAVE_TERMINAL=0
exec &> >(tee -a "$WORKING_DIR/create_gpg.log")
fi
set -o pipefail
# Turn on glob extensions. They are used in the verify function.
# But *must* be turned on, before the function is parsed.
shopt -s extglob
# Helper functions.
function err_exit {
msg="$* (${BASH_SOURCE[1]##*/}: line ${BASH_LINENO[0]})"
if [[ "$HAVE_TERMINAL" == "1" ]] ;then
echo -e "\033[1;31m$msg\033[0m" >&2
else
echo -e "$msg" >&2
fi
exit 1
}
if [[ "$(type -t pkg-config)" != "file" ]]; then
err_exit "ERROR: pkg-config is not installed. This script requires pkg-config to be available.\nPlease fix your setup and try again."
fi
function do_fail {
msg="\n** ERROR at $* ** - build failed (${BASH_SOURCE[1]##*/}: line ${BASH_LINENO[0]})"
if [[ "$HAVE_TERMINAL" == "1" ]] ;then
echo -e "\033[1;31m$msg\033[0m" >&2
else
echo -e "$msg" >&2
fi
exit 1
}
function pycmd {
python3 -c "c=$config
$1"
}
# Functions for the real work.
function download {
if [[ -f "$archive_path" ]]; then
echo " - Skipping download $archive_name"
else
echo " - Downloading $archive_name"
curl -L -o "$archive_path" "$full_url"
fi
file_hash=$(shasum -a 256 "$archive_path" | cut -d ' ' -f 1)
if [[ "${lib_sha256:?}" != "$file_hash" ]]; then
echo "SHA-256 sums of file $archive_name don't match" >&2
echo "expected: $lib_sha256" >&2
echo "obtained: $file_hash" >&2
do_fail "download: failed to download $archive_name from $full_url"
fi
}
function unpack {
local dirs=("$BUILD_DIR/$lib_name-"*)
if [[ -d "${dirs[0]}" ]]; then
echo " - Removing dir ${dirs[@]##*/}"
rm -rf "${dirs[@]}"
fi
echo " - unpacking $archive_name"
suffix=${archive_name##*.tar.}
untar="tar -x --exclude gettext-tools"
case "$suffix" in
lz)
lunzip=lunzip
if ! command -v lunzip &>/dev/null; then
lunzip="lzip -d"
fi
$lunzip -k -c "$archive_path" | $untar -C "$BUILD_DIR" -f - || do_fail "unpack: failed to unpack $archive_name"
;;
bz2)
$untar -C "$BUILD_DIR" -jf "$archive_path" || do_fail "unpack: failed to unpack $archive_name"
;;
gz|xz)
$untar -C "$BUILD_DIR" -zf "$archive_path" || do_fail "unpack: failed to unpack $archive_name"
;;
*)
do_fail "unpack: failed to unpack $archive_name"
esac
}
function apply_patches {
patches=("$BASE_DIR/patches/$lib_name/"*.patch)
if [[ -f "${patches[0]}" ]]; then
echo " - Applying patches"
for patch in "${patches[@]}"; do
echo " - Applying patch $patch"
patch -d "$dir_path" -p1 -t -N < "$patch" || do_fail "patch: failed to apply patch $patch"
done
fi
}
function define_build_vars {
dest_arch="${1:-x86_64}"
build_cflags="${MACOS_MIN_VERSION} -isysroot ${MACOS_SDK_PATH} -isystem ${MACOS_SDK_PATH} -ULOCALEDIR -DLOCALEDIR='\"${TARGET_DIR}/share/locale\"'"
# For some reason, many configure based libraries test for aarch64 instead of arm64,
# so replace arm64 with aarch64.
build_alias="${dest_arch/arm64/aarch64}-apple-darwin"
host_alias="${build_alias}"
build_arch_flags=""
if [[ "$dest_arch" == "arm64" ]]; then
build_arch_flags="${build_arch_flags} -m64 -target ${build_alias} -arch ${dest_arch}"
else
build_arch_flags="${build_arch_flags} -march=core2 -arch ${dest_arch} -target ${build_alias}"
fi
build_cflags="${build_cflags} -I${arch_dist_dir}/include ${build_arch_flags}"
# When libgcrypt is built using clang 5 it crashes when running tests
# and later on runtime when for example signing a message with a 4096 rsa key.
# To solve this issue it is necessary to disable the new linker introduced in
# clang 5 by passing the `-ld_classic` flag to the linker arguments.
build_ldflags="-L${arch_dist_dir}/lib ${build_arch_flags} -ld_classic"
build_cxxflags="${build_cflags}"
build_cppflags="${build_cflags}"
}
function customize_build_for_libksba {
configure_args="$configure_args --with-libgpg-error-prefix=${arch_dist_dir}"
}
function customize_build_for_sqlite {
cache_file="$WORKING_DIR/config.${dest_arch}.sqlite.cache"
}
function customize_build_for_libgcrypt {
configure_args="$configure_args --with-libgpg-error-prefix=${arch_dist_dir}"
if [[ "$1" = "arm64" ]]; then
configure_args="$configure_args --disable-asm"
fi
}
function post_configure_for_libtasn1 {
if [[ "$1" != "arm64" ]]; then
return
fi
echo "Disabling 'tests' and 'examples' make steps for $1"
# `make tests` and `make examples` will fail on arm64 due to linking x86_64 and arm64
# so replace the Makefile with a dummy one.
echo -e "all:\n\techo test\n\ninstall:\n\techo install" > ./tests/Makefile
echo -e "all:\n\techo test\n\ninstall:\n\techo install" > ./examples/Makefile
}
function customize_build_for_libassuan {
# Fixes duplicate symbols errors - https://lists.gnupg.org/pipermail/gnupg-devel/2024-July/035614.html
build_cflags="${build_cflags} -std=gnu89"
cache_file="$WORKING_DIR/config.${dest_arch}.assuan.cache"
}
function customize_build_for_gnupg {
build_cflags="${build_cflags} -I${arch_dist_dir}/include -I${arch_dist_dir}/include/libusb-1.0/"
build_cflags="${build_cflags} -UGNUPG_BINDIR -DGNUPG_BINDIR=\"\\\"${TARGET_DIR}/bin\\\"\" \
-UGNUPG_LIBEXECDIR -DGNUPG_LIBEXECDIR=\"\\\"${TARGET_DIR}/libexec\\\"\" \
-UGNUPG_LIBDIR -DGNUPG_LIBDIR=\"\\\"${TARGET_DIR}/lib/gnupg\\\"\" \
-UGNUPG_DATADIR -DGNUPG_DATADIR=\"\\\"${TARGET_DIR}/share/gnupg\\\"\" \
-UGNUPG_SYSCONFDIR -DGNUPG_SYSCONFDIR=\"\\\"${TARGET_DIR}/etc/gnupg\\\"\""
build_cxxflags="${build_cflags}"
build_cppflags="${build_cflags}"
build_ldflags="${build_ldflags} -framework Foundation -framework Security"
cache_file="${WORKING_DIR}/config.${dest_arch}.gnupg.cache"
configure_args="$configure_args \
--localstatedir=/var \
--sysconfdir=${TARGET_DIR}/etc \
--disable-rpath \
--with-pinentry-pgm=${TARGET_DIR}/libexec/pinentry-mac.app/Contents/MacOS/pinentry-mac \
--with-agent-pgm=${TARGET_DIR}/bin/gpg-agent \
--with-scdaemon-pgm=${TARGET_DIR}/libexec/scdaemon \
--with-dirmngr-pgm=${TARGET_DIR}/bin/dirmngr \
--with-dirmngr-ldap-pgm=${TARGET_DIR}/libexec/dirmngr_ldap \
--with-protect-tool-pgm=${TARGET_DIR}/libexec/gpg-protect-tool \
--with-libassuan-prefix=${arch_dist_dir} \
--with-ksba-prefix=${arch_dist_dir} \
--with-npth-prefix=${arch_dist_dir} \
--with-readline=${arch_dist_dir} \
--with-libintl-prefix=${arch_dist_dir} \
--with-libiconv-prefix=${arch_dist_dir}"
}
function customize_build_for_gettext {
cache_file="${WORKING_DIR}/config.${dest_arch}.gettext.cache"
}
function pre_build {
if [[ "$lib_name" = "gettext" ]]; then
pushd gettext-runtime || exit
fi
make distclean &>/dev/null
if [[ ! -f "configure" ]]; then
./autogen.sh
fi
}
function post_build {
if [[ "$lib_name" = "gettext" ]]; then
popd || exit
fi
# Run libgcrypt tests after building for x86_64 to make sure
# that the library doesn't crash. See the explanation for
# `-ld_classic` flag.
if [[ "$lib_name" == "libgcrypt" ]] && [[ "$dest_arch" == "x86_64" ]]; then
echo "* Running libgcrypt tests to make sure "
make check || do_fail "${lib_name}: failed running tests"
fi
}
function post_configure {
if [[ "$lib_name" = "gnupg" ]]; then
# Change the name from "GnuPG" to "GnuPG/MacGPG2".
echo -e "#undef GNUPG_NAME\n#define GNUPG_NAME \"GnuPG/MacGPG2\"" >> config.h
fi
}
function customize_build {
if [[ "${lib_name}" != "sqlite" ]]; then
build_cflags="${build_cflags} -Ofast"
else
echo SQLite no Ofast
fi
if [[ "${lib_name}" != "gnupg" ]]; then
configure_args="$configure_args --enable-static=no"
fi
if [[ "${lib_name}" == "gpg-error" ]]; then
configure_args="$configure_args --with-libintl-prefix=\"${DIST_DIR}/${dest_arch}\" --with-iconv-prefix=\"${DIST_DIR}/${dest_arch}\""
fi
}
function build {
pushd "$dir_path" >/dev/null || exit
local dest_arch="${1:-x86_64}"
arch_dist_dir="${DIST_DIR}/${dest_arch}"
echo " - building $lib_name for ${dest_arch}"
define_build_vars "${dest_arch}"
pre_build
configure_args="$lib_configure_args"
cache_file="${WORKING_DIR}/config.${dest_arch}.cache"
# Call the general customize function.
customize_build
# Check if any tool based functions are configured.
customize_func="customize_build_for_${lib_name//-/_}"
if [[ "$(type -t "${customize_func}")" == "function" ]]; then
${customize_func} "${dest_arch}"
fi
# GMP by default produces assembly which is only compatible
# with the CPU the lib is built on or newer.
# --disable-assembly might have to be added as well.
# By defining host_alias, gmp will build for a generic 64bit CPU.
configure_args="$configure_args --host=${host_alias} --target=${build_alias}"
# 1. SYSROOT so libraries such as libgpg-error are automatically detected.
# 2. Define the build flags to pass to configure.
# 3. ABI is always 64-bit
# 4. Define ac_cv_* to work around a bug on macOS where this check failed (caused a runtime segfault.)
SYSROOT="${arch_dist_dir}" \
CFLAGS="$build_cflags" CXXFLAGS="$build_cxxflags" \
LDFLAGS="$build_ldflags" CPPFLAGS="$build_cppflags" \
PKG_CONFIG_PATH="${arch_dist_dir}/lib/pkgconfig" \
ABI=64 \
ac_cv_search_clock_gettime=no ac_cv_func_clock_gettime=no \
./configure \
--prefix="${arch_dist_dir:?}" \
--cache-file="${cache_file:?}" \
$configure_args || \
do_fail "build: ${lib_name} (${dest_arch}) configure"
post_configure
post_configure_func="post_configure_for_${lib_name//-/_}"
if [[ "$(type -t "${post_configure_func}")" == "function" ]]; then
${post_configure_func} "${dest_arch}"
fi
make localedir="${TARGET_DIR}/share/locale" datarootdir="${TARGET_DIR}/share" || do_fail "build: ${lib_name} (${dest_arch}) make"
make install || do_fail "build: ${lib_name} (${dest_arch}) install"
post_build
popd >/dev/null || exit
}
function prepare_for_packaging {
# some files get wrong permissions, let's just fix them ...
echo "- Fix permissions"
find "$DIST_DIR" -type f -exec chmod +w {} +
echo "- Copy share folder to universal build"
mkdir -p "${UNIVERSAL_DIST_DIR:?}/share"
cp -R "${DIST_DIR}/arm64/share/"* "${UNIVERSAL_DIST_DIR:?}/share/"
mkdir -p "${UNIVERSAL_DIST_DIR:?}/include"
cp -R "${DIST_DIR}/arm64/include/"* "${UNIVERSAL_DIST_DIR:?}/include/"
# Walk through the files and copy non-binary files as is and
# perform necessary fixups (adjusting library ids, rpaths)
# and combining variants into one universal binary.
echo "- Fix up executables and create universal binaries."
pushd "$DIST_DIR" || exit
for dir in "lib" "bin" "sbin" "libexec"; do
# Create the directory if it does not exist yet.
if [[ ! -d "${UNIVERSAL_DIST_DIR}/${dir}" ]]; then
mkdir -p "${UNIVERSAL_DIST_DIR}/${dir}"
fi
for item in "x86_64/${dir}/"*; do
filename=${item##*/}
executable=$(file "$item" | grep "64-bit")
item_arm=${item/x86_64/arm64}
item_without_arch=${item/x86_64\//}
# Not a executable, simply copy the file.
if [[ -z "$executable" || -L "$item" ]]; then
echo " - Copy non-executable or symlink $item"
cp -R "$item" "${UNIVERSAL_DIST_DIR}/${dir}/"
continue;
fi
echo " - Fix dylib paths $item (x86_64)"
fixup_lib_paths "$item"
echo " - Fix dylib paths $item (arm64)"
fixup_lib_paths "$item_arm"
echo " - Combine variants into universal binary $item_without_arch"
create_universal_binary "$item_without_arch"
codesign_binary "${UNIVERSAL_DIST_DIR}/${item_without_arch}"
done
done
popd || exit
}
function fixup_lib_paths {
local path="$1"
local filename="$(basename "$path")"
# If this is an dylib adjust the ID.
if [[ "${filename##*.}" = "dylib" ]]; then
echo " - Adjusting ID for ${path}"
install_name_tool -id "${TARGET_DIR}/lib/${filename}" "${path}"
fi
# Check if rpaths need to be adjusted.
libs=$(otool -L "$path" | cut -d' ' -f1 | tr -d "\t" | tail -n +2)
need_rpath=0
for lib in $libs; do
if [[ "$lib" =~ $DIST_DIR ]]; then
need_rpath=1
rpath="@rpath/${lib##*/}"
echo " - Change $lib to relative path $rpath"
install_name_tool -change "$lib" "$rpath" "$path"
fi
done
# Add the rpath if necessary and a loader rpath doesn't already exist.
loader_path_rpath="$(otool -l "$path" | grep -A2 "cmd LC_RPATH" | grep -E "path\s@loader_path")"
if [[ $need_rpath -eq 1 && -z "$loader_path_rpath" ]]; then
echo " - Adding @loader_path as rpath to $path"
install_name_tool -add_rpath "@loader_path/../lib" "$path"
fi
}
function create_universal_binary {
local path="$1"
echo " - Combine x86_64/${path} with arm64/${path} -> ${path}"
lipo -create -output "${UNIVERSAL_DIST_DIR}/${path}" "x86_64/${path}" "arm64/${path}"
}
function codesign_binary {
local path="$1"
if [[ -z "$CERT_NAME_APPLICATION" ]]; then
echo " - *DO NOT* code sign universal binary $item_without_arch"
return
else
echo " - Code sign universal binary $item_without_arch"
fi
KEYCHAIN=$(security find-certificate -c "$CERT_NAME_APPLICATION" | sed -En 's/^keychain: "(.*)"/\1/p')
[[ -n "$KEYCHAIN" ]] || err_exit "I require certificate '$CERT_NAME_APPLICATION' but it can't be found. Aborting."
if [[ -n "$UNLOCK_PWD" ]]; then
security unlock-keychain -p "$UNLOCK_PWD" "$KEYCHAIN"
fi
codesign --force --timestamp -o runtime --sign "$CERT_NAME_APPLICATION" "$path" || do_fail "codesign_binary - failed to sign binary $path"
}
function copy_to_final_destination {
echo "* Copying files to final destination ${FINAL_DIR##*/}"
rm -rf "$FINAL_DIR" &>/dev/null
mkdir -p "$FINAL_DIR"
pushd "${UNIVERSAL_DIST_DIR}" >/dev/null || exit
tar -cf - \
"${BIN_FILES[@]/#/bin/}" \
"${LIBEXEC_FILES[@]/#/libexec/}" \
lib/*dylib \
include \
share/gnupg \
share/man \
share/locale | tar -C "$FINAL_DIR" -xf -
ln -s gpg "${FINAL_DIR}/bin/gpg2"
cp -r "${BASE_DIR}/payload/" "${FINAL_DIR}/" || do_fail "copy_to_final_destination: failed to copy payload files."
cp sbin/gpg-zip "$FINAL_DIR/bin/" || do_fail "copy_to_final_destination: failed to copy gpg-zip"
# Remove any libgettext files.
rm -f "$FINAL_DIR/lib/libgettext"*
popd >/dev/null || exit
}
function verify {
echo "* Verify binary correctnes"
# ensure that all executables and libraries have correct lib-path settings and are signed correctly
pushd "$FINAL_DIR" >/dev/null || exit
otool -L bin/!(convert-keyring|gpg-zip) | grep "$WORKING_DIR" && do_fail "verify: some binaries in bin/ still contain wrong paths"
otool -L libexec/!(fixGpgHome|shutdown-gpg-agent) | grep "$WORKING_DIR" && do_fail "verify: some binaries in libexec/ still contain wrong paths"
otool -L lib/* | grep "$WORKING_DIR" && do_fail "verify: some binaries in lib/ still contain wrong paths"
if [[ -n "$CERT_NAME_APPLICATION" ]]; then
# file prints 3 lines for each binary. the first with the filename and next one line for each architecture.
# By using grep -v '(' only the first line is kept.
# Use for instead of while/read since otherwise do_fail would *not* exit the script
# as the command is run in a subshell.
for filename in $(find . -print0 -type f | xargs -0 file --mime-type | grep 'application/x-mach-binary' | grep -v 'for architecture' | sed -E 's/: +(.*)//'); do
codesign --verify "$filename" &>/dev/null || do_fail "verify: invalid signature for $filename"
done
echo " - All binaries are signed correctly."
else
echo " - No code signing certificate specified."
fi
popd >/dev/null || exit
}
echo -n "Build started at "; date
# Read libs.json
config=$(python3 -c "import sys,json; print(json.loads(sys.stdin.read()))" < "$BASE_DIR/libs.json" 2>/dev/null) || do_fail "read libs.json"
count=$(pycmd "print(len(c))") || do_fail "process libs.json"
if [[ -n "${TOOL}" ]]; then
echo "== Building ${TOOL} =="
fi
# Loop over all libs
for (( i=0; i<count; i++ )); do
# Set the variables lib_name, lib_url, etc.
unset $(compgen -A variable | grep "^lib_")
eval $(pycmd "for k, v in c[$i].items(): print('lib_%s=\'%s\'' % (k, v))")
[[ -n "$lib_url" ]] || err_exit "Variable lib_url not set!"
full_url=${lib_url/\$\{VERSION\}/$lib_version}
archive_name=${full_url##*/}
archive_path=$CACHE_DIR/$archive_name
dir_name=${archive_name%%.tar*}
dir_path=$BUILD_DIR/$dir_name
echo "* Build $lib_name"
if [[ -n "$TOOL" && "$TOOL" != "$lib_name" ]]; then
echo "Skip $lib_name"
continue
fi
if [[ -n "$lib_installed_file" && -d "$dir_path" && (-f "$DIST_DIR/$lib_installed_file" || -f "$DIST_DIR/arm64/$lib_installed_file") ]]; then
echo "Already built $dir_name"
continue
fi
download
unpack
apply_patches
build "x86_64"
build "arm64"
done
echo "* Prepare for packaging"
# Merge the architectures together.
prepare_for_packaging
# Copy all files to the final destination
copy_to_final_destination
# Verify all files
verify
echo -n "Build ended at "; date