2021-11-08 13:27:45 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-01-10 10:46:52 +08:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later AND MIT
|
|
|
|
# Copyright (c) 2017-2021 Maxim Biro <nurupo.contributions@gmail.com>
|
|
|
|
# Copyright (c) 2021 by The qTox Project Contributors
|
2021-11-08 13:27:45 +08:00
|
|
|
|
2022-03-07 16:51:13 +08:00
|
|
|
set -euo pipefail
|
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
readonly SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
|
|
|
|
|
|
source "${SCRIPT_DIR}/build_utils.sh"
|
|
|
|
|
2022-03-03 18:51:08 +08:00
|
|
|
parse_arch --dep "libexif" --supported "win32 win64 macos" "$@"
|
2022-03-07 17:28:13 +08:00
|
|
|
|
|
|
|
"${SCRIPT_DIR}/download/download_libexif.sh"
|
|
|
|
|
2022-03-03 18:51:08 +08:00
|
|
|
CFLAGS="-O2 -g0 ${CROSS_CFLAG}" \
|
|
|
|
LDFLAGS="${CROSS_LDFLAG}" \
|
|
|
|
./configure "${HOST_OPTION}" \
|
2022-03-07 17:28:13 +08:00
|
|
|
"--prefix=${DEP_PREFIX}" \
|
2021-11-08 13:27:45 +08:00
|
|
|
--enable-shared \
|
|
|
|
--disable-static \
|
|
|
|
--disable-docs \
|
|
|
|
--disable-nls
|
|
|
|
|
2022-03-07 17:28:13 +08:00
|
|
|
make -j "${MAKE_JOBS}"
|
2021-11-08 13:27:45 +08:00
|
|
|
make install
|