-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild-hfsplustools-git.sh
executable file
·153 lines (119 loc) · 3.93 KB
/
build-hfsplustools-git.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
#!/usr/bin/env bash
# Written and placed in public domain by Jeffrey Walton
# This script builds HFS+ Tools from sources.
HFSPLUSTOOLS_VER=master
HFSPLUSTOOLS_DIR=hsfplustools-${HFSPLUSTOOLS_VER}
PKG_NAME=hsfplustools
###############################################################################
# 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 "============== HFS+ Tools =============="
echo "========================================"
echo ""
echo "HFS+ Tools ${HFSPLUSTOOLS_VER}..."
rm -rf "$HFSPLUSTOOLS_DIR" 2>/dev/null
echo ""
echo "**********************"
echo "Cloning package"
echo "**********************"
if ! git clone --depth=3 https://github.com/miniupnp/hfsplustools.git "$HFSPLUSTOOLS_DIR";
then
echo "Failed to checkout HFS+ Tools"
exit 1
fi
cd "$HFSPLUSTOOLS_DIR"
git checkout master &>/dev/null
echo ""
echo "**********************"
echo "Building package"
echo "**********************"
# Since we call the makefile directly, we need to escape dollar signs.
export CPPFLAGS=$(echo "${INSTX_CPPFLAGS}" | sed 's/\$/\$\$/g')
export ASFLAGS=$(echo "${INSTX_ASFLAGS}" | sed 's/\$/\$\$/g')
export CFLAGS=$(echo "${INSTX_CFLAGS}" | sed 's/\$/\$\$/g')
export CXXFLAGS=$(echo "${INSTX_CXXFLAGS}" | sed 's/\$/\$\$/g')
export LDFLAGS=$(echo "${INSTX_LDFLAGS}" | sed 's/\$/\$\$/g')
export LIBS="${INSTX_LDLIBS}"
export PREFIX="${INSTX_PREFIX}"
export LIBDIR="${INSTX_LIBDIR}"
MAKE_FLAGS=("-j" "${INSTX_JOBS}" "V=1")
if ! "${MAKE}" "${MAKE_FLAGS[@]}"
then
echo "Failed to build HFS+ Tools"
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 "**********************"
# Man, Valgirnd is awful when it comes to trying to build self tests.
# MAKE_FLAGS=("check" "-k" "V=1")
# if ! "${MAKE}" "${MAKE_FLAGS[@]}"
# then
# echo "Failed to test HFS+ Tools"
# exit 1
# fi
# Fix runpaths again
bash "${INSTX_TOPDIR}/fix-runpath.sh"
echo ""
echo "**********************"
echo "Installing package"
echo "**********************"
MAKE_FLAGS=("install")
if [[ -n "${SUDO_PASSWORD}" ]]; then
printf "%s\n" "${SUDO_PASSWORD}" | sudo ${SUDO_ENV_OPT} -S "${MAKE}" "${MAKE_FLAGS[@]}"
printf "%s\n" "${SUDO_PASSWORD}" | sudo ${SUDO_ENV_OPT} -S bash "${INSTX_TOPDIR}/fix-permissions.sh" "${INSTX_PREFIX}"
else
"${MAKE}" "${MAKE_FLAGS[@]}"
bash "${INSTX_TOPDIR}/fix-permissions.sh" "${INSTX_PREFIX}"
fi
###############################################################################
echo ""
echo "*****************************************************************************"
echo "Please run Bash's 'hash -r' to update program cache in the current shell"
echo "*****************************************************************************"
###############################################################################
touch "${INSTX_PKG_CACHE}/${PKG_NAME}"
cd "${CURR_DIR}" || exit 1
###############################################################################
# Set to false to retain artifacts
if true;
then
ARTIFACTS=("$HFSPLUSTOOLS_DIR")
for artifact in "${ARTIFACTS[@]}"; do
rm -rf "$artifact"
done
fi
exit 0