ca-certificates: Update to 2017-09-20 CA file
[termux-packages] / build-package.sh
CommitLineData
59f0d218
FF
1#!/bin/bash
2
59f0d218
FF
3set -e -o pipefail -u
4
7b1f1bd3
FF
5# Utility function to log an error message and exit with an error code.
6termux_error_exit() {
7 echo "ERROR: $*" 1>&2
a0057943 8 exit 1
7b1f1bd3 9}
2c1aa558 10
7b1f1bd3 11# Utility function to download a resource, optionally checking against a checksum.
19fb617a 12termux_download() {
7b1f1bd3
FF
13 local URL="$1"
14 local DESTINATION="$2"
c9d4e74f
FF
15
16 if [ -f "$DESTINATION" ] && [ $# = 3 ] && [ -n "$3" ]; then
17 # Keep existing file if checksum matches.
18 local EXISTING_CHECKSUM
19 EXISTING_CHECKSUM=$(sha256sum "$DESTINATION" | cut -f 1 -d ' ')
20 if [ "$EXISTING_CHECKSUM" = "$3" ]; then return; fi
21 fi
22
7b1f1bd3
FF
23 local TMPFILE
24 TMPFILE=$(mktemp "$TERMUX_PKG_TMPDIR/download.$TERMUX_PKG_NAME.XXXXXXXXX")
e239964b 25 echo "Downloading ${URL}"
7b1f1bd3 26 local TRYMAX=6
6ad2991c 27 for try in $(seq 1 $TRYMAX); do
e239964b 28 if curl -L --fail --retry 2 -o "$TMPFILE" "$URL"; then
7b1f1bd3
FF
29 local ACTUAL_CHECKSUM
30 ACTUAL_CHECKSUM=$(sha256sum "$TMPFILE" | cut -f 1 -d ' ')
31 if [ $# = 3 ] && [ -n "$3" ]; then
e239964b 32 # Optional checksum argument:
aea30235 33 local EXPECTED=$3
7b1f1bd3 34 if [ "$EXPECTED" != "$ACTUAL_CHECKSUM" ]; then
a75313ee
FF
35 >&2 printf "Wrong checksum for %s:\nExpected: %s\nActual: %s\n" \
36 "$URL" "$EXPECTED" "$ACTUAL_CHECKSUM"
aea30235
FF
37 exit 1
38 fi
e239964b 39 else
a75313ee
FF
40 printf "No validation of checksum for %s:\nActual: %s\n" \
41 "$URL" "$ACTUAL_CHECKSUM"
e239964b
FF
42 fi
43 mv "$TMPFILE" "$DESTINATION"
44 return
45 else
7b1f1bd3 46 echo "Download of $URL failed (attempt $try/$TRYMAX)" 1>&2
e239964b
FF
47 sleep 45
48 fi
49 done
50
7b1f1bd3
FF
51 termux_error_exit "Failed to download $URL"
52}
53
54# Utility function for golang-using packages to setup a go toolchain.
01e699d9 55termux_setup_golang() {
7b1f1bd3
FF
56 export GOOS=android
57 export CGO_ENABLED=1
58 export GO_LDFLAGS="-extldflags=-pie"
59 if [ "$TERMUX_ARCH" = "arm" ]; then
60 export GOARCH=arm
61 export GOARM=7
62 elif [ "$TERMUX_ARCH" = "i686" ]; then
63 export GOARCH=386
64 export GO386=sse2
65 elif [ "$TERMUX_ARCH" = "aarch64" ]; then
66 export GOARCH=arm64
67 elif [ "$TERMUX_ARCH" = "x86_64" ]; then
68 export GOARCH=amd64
69 else
70 termux_error_exit "Unsupported arch: $TERMUX_ARCH"
71 fi
72
0dc547ae 73 local TERMUX_GO_VERSION=go1.9
7b1f1bd3 74 local TERMUX_GO_PLATFORM=linux-amd64
7b1f1bd3 75
538812ae 76 local TERMUX_BUILDGO_FOLDER=$TERMUX_COMMON_CACHEDIR/${TERMUX_GO_VERSION}
7b1f1bd3
FF
77 export GOROOT=$TERMUX_BUILDGO_FOLDER
78 export PATH=$GOROOT/bin:$PATH
79
80 if [ -d "$TERMUX_BUILDGO_FOLDER" ]; then return; fi
81
82 local TERMUX_BUILDGO_TAR=$TERMUX_COMMON_CACHEDIR/${TERMUX_GO_VERSION}.${TERMUX_GO_PLATFORM}.tar.gz
83 rm -Rf "$TERMUX_COMMON_CACHEDIR/go" "$TERMUX_BUILDGO_FOLDER"
84 termux_download https://storage.googleapis.com/golang/${TERMUX_GO_VERSION}.${TERMUX_GO_PLATFORM}.tar.gz \
8c9b8a9a 85 "$TERMUX_BUILDGO_TAR" \
0dc547ae 86 d70eadefce8e160638a9a6db97f7192d8463069ab33138893ad3bf31b0650a79
36c4069c 87
7b1f1bd3
FF
88 ( cd "$TERMUX_COMMON_CACHEDIR"; tar xf "$TERMUX_BUILDGO_TAR"; mv go "$TERMUX_BUILDGO_FOLDER"; rm "$TERMUX_BUILDGO_TAR" )
89}
90
f0c1439b
FF
91# Utility function for cmake-built packages to setup a current ninja.
92termux_setup_ninja() {
5f03e364 93 local NINJA_VERSION=1.8.2
f0c1439b
FF
94 local NINJA_FOLDER=$TERMUX_COMMON_CACHEDIR/ninja-$NINJA_VERSION
95 if [ ! -x $NINJA_FOLDER/ninja ]; then
96 mkdir -p $NINJA_FOLDER
97 local NINJA_ZIP_FILE=$TERMUX_PKG_TMPDIR/ninja-$NINJA_VERSION.zip
98 termux_download https://github.com/ninja-build/ninja/releases/download/v$NINJA_VERSION/ninja-linux.zip \
99 $NINJA_ZIP_FILE \
5f03e364 100 d2fea9ff33b3ef353161ed906f260d565ca55b8ca0568fa07b1d2cab90a84a07
f0c1439b
FF
101 unzip $NINJA_ZIP_FILE -d $NINJA_FOLDER
102 fi
103 export PATH=$NINJA_FOLDER:$PATH
104}
105
106# Utility function for cmake-built packages to setup a current meson.
107termux_setup_meson() {
108 termux_setup_ninja
9d0018f4 109 local MESON_VERSION=0.42.1
f0c1439b
FF
110 local MESON_FOLDER=$TERMUX_COMMON_CACHEDIR/meson-$MESON_VERSION
111 if [ ! -d "$MESON_FOLDER" ]; then
112 local MESON_TAR_NAME=meson-$MESON_VERSION.tar.gz
113 local MESON_TAR_FILE=$TERMUX_PKG_TMPDIR/$MESON_TAR_NAME
114 termux_download \
115 https://github.com/mesonbuild/meson/releases/download/$MESON_VERSION/meson-$MESON_VERSION.tar.gz \
116 $MESON_TAR_FILE \
9d0018f4 117 30bdded6fefc48211d30818d96dd34aae56ee86ce9710476f501bd7695469c4b
f0c1439b
FF
118 tar xf "$MESON_TAR_FILE" -C "$TERMUX_COMMON_CACHEDIR"
119 (cd $MESON_FOLDER && patch -p1 < $TERMUX_SCRIPTDIR/scripts/meson-android.patch)
120 fi
121 TERMUX_MESON="$MESON_FOLDER/meson.py"
63d49763 122 TERMUX_MESON_CROSSFILE=$TERMUX_COMMON_CACHEDIR/meson-crossfile-$TERMUX_ARCH-v1.txt
f0c1439b
FF
123 if [ ! -f $TERMUX_MESON_CROSSFILE ]; then
124 local MESON_CPU MESON_CPU_FAMILY
125 if [ $TERMUX_ARCH = "arm" ]; then
126 MESON_CPU_FAMILY="arm"
127 MESON_CPU="armv7"
128 elif [ $TERMUX_ARCH = "i686" ]; then
129 MESON_CPU_FAMILY="x86"
130 MESON_CPU="i686"
131 elif [ $TERMUX_ARCH = "x86_64" ]; then
132 MESON_CPU_FAMILY="x86_64"
133 MESON_CPU="x86_64"
134 elif [ $TERMUX_ARCH = "aarch64" ]; then
135 MESON_CPU_FAMILY="arm"
136 MESON_CPU="aarch64"
137 else
138 termux_error_exit "Unsupported arch: $TERMUX_ARCH"
139 fi
140
141 cat > $TERMUX_MESON_CROSSFILE <<-HERE
142 [binaries]
143 ar = '$AR'
144 c = '$CC'
145 cpp = '$CXX'
146 ld = '$LD'
147 pkg-config = '$PKG_CONFIG'
148 strip = '$STRIP'
149 [properties]
150 needs_exe_wrapper = true
151 [host_machine]
152 cpu_family = '$MESON_CPU_FAMILY'
153 cpu = '$MESON_CPU'
154 endian = 'little'
155 system = 'android'
156 HERE
157 fi
158}
159
bb8baaa2
FF
160# Utility function for cmake-built packages to setup a current cmake.
161termux_setup_cmake() {
d946e67c 162 local TERMUX_CMAKE_MAJORVESION=3.9
e72b3977 163 local TERMUX_CMAKE_MINORVERSION=2
bb8baaa2
FF
164 local TERMUX_CMAKE_VERSION=$TERMUX_CMAKE_MAJORVESION.$TERMUX_CMAKE_MINORVERSION
165 local TERMUX_CMAKE_TARNAME=cmake-${TERMUX_CMAKE_VERSION}-Linux-x86_64.tar.gz
166 local TERMUX_CMAKE_TARFILE=$TERMUX_PKG_TMPDIR/$TERMUX_CMAKE_TARNAME
167 local TERMUX_CMAKE_FOLDER=$TERMUX_COMMON_CACHEDIR/cmake-$TERMUX_CMAKE_VERSION
7048a1f2 168 if [ ! -d "$TERMUX_CMAKE_FOLDER" ]; then
bb8baaa2 169 termux_download https://cmake.org/files/v$TERMUX_CMAKE_MAJORVESION/$TERMUX_CMAKE_TARNAME \
7048a1f2 170 "$TERMUX_CMAKE_TARFILE" \
e72b3977 171 f4e1e848e21c3fba134fbddd793860ba9a17c35d0aeaa3bd83149a6ec1bf9fbb
7048a1f2
FF
172 rm -Rf "$TERMUX_PKG_TMPDIR/cmake-${TERMUX_CMAKE_VERSION}-Linux-x86_64"
173 tar xf "$TERMUX_CMAKE_TARFILE" -C "$TERMUX_PKG_TMPDIR"
174 mv "$TERMUX_PKG_TMPDIR/cmake-${TERMUX_CMAKE_VERSION}-Linux-x86_64" \
175 "$TERMUX_CMAKE_FOLDER"
bb8baaa2
FF
176 fi
177 export PATH=$TERMUX_CMAKE_FOLDER/bin:$PATH
16087461 178 export CMAKE_INSTALL_ALWAYS=1
bb8baaa2
FF
179}
180
7b1f1bd3
FF
181# First step is to handle command-line arguments. Not to be overridden by packages.
182termux_step_handle_arguments() {
183 # shellcheck source=/dev/null
184 test -f "$HOME/.termuxrc" && source "$HOME/.termuxrc"
185
186 # Handle command-line arguments:
187 _show_usage () {
188 echo "Usage: ./build-package.sh [-a ARCH] [-d] [-D] PACKAGE"
189 echo "Build a package by creating a .deb file in the debs/ folder."
190 echo " -a The architecture to build for: aarch64(default), arm, i686, x86_64 or all."
191 echo " -d Build with debug symbols."
192 echo " -D Build a disabled package in disabled-packages/."
bc0560aa 193 echo " -f Force build even if package has already been built."
7b1f1bd3
FF
194 echo " -s Skip dependency check."
195 exit 1
196 }
bc0560aa 197 while getopts :a:hdDfs option; do
7b1f1bd3
FF
198 case "$option" in
199 a) TERMUX_ARCH="$OPTARG";;
200 h) _show_usage;;
201 d) TERMUX_DEBUG=true;;
202 D) local TERMUX_IS_DISABLED=true;;
bc0560aa 203 f) TERMUX_FORCE_BUILD=true;;
7b1f1bd3
FF
204 s) export TERMUX_SKIP_DEPCHECK=true;;
205 ?) termux_error_exit "./build-package.sh: illegal option -$OPTARG";;
206 esac
207 done
208 shift $((OPTIND-1))
209
210 if [ "$#" -ne 1 ]; then _show_usage; fi
211 unset -f _show_usage
212
213 # Handle 'all' arch:
214 if [ -n "${TERMUX_ARCH+x}" ] && [ "${TERMUX_ARCH}" = 'all' ]; then
adc0d548 215 for arch in 'aarch64' 'arm' 'i686' 'x86_64'; do
bc0560aa 216 ./build-package.sh ${TERMUX_FORCE_BUILD+-f} -a $arch "$1"
7b1f1bd3
FF
217 done
218 exit
219 fi
220
221 # Check the package to build:
222 TERMUX_PKG_NAME=$(basename "$1")
223 export TERMUX_SCRIPTDIR
224 TERMUX_SCRIPTDIR=$(cd "$(dirname "$0")"; pwd)
225 if [[ $1 == *"/"* ]]; then
226 # Path to directory which may be outside this repo:
227 if [ ! -d "$1" ]; then termux_error_exit "'$1' seems to be a path but is not a directory"; fi
228 export TERMUX_PKG_BUILDER_DIR
229 TERMUX_PKG_BUILDER_DIR=$(realpath "$1")
06b7f2ca
FF
230 # Skip depcheck for external package:
231 TERMUX_SKIP_DEPCHECK=true
7b1f1bd3
FF
232 else
233 # Package name:
234 if [ -n "${TERMUX_IS_DISABLED=""}" ]; then
235 export TERMUX_PKG_BUILDER_DIR=$TERMUX_SCRIPTDIR/disabled-packages/$TERMUX_PKG_NAME
236 else
237 export TERMUX_PKG_BUILDER_DIR=$TERMUX_SCRIPTDIR/packages/$TERMUX_PKG_NAME
238 fi
239 fi
240 TERMUX_PKG_BUILDER_SCRIPT=$TERMUX_PKG_BUILDER_DIR/build.sh
241 if test ! -f "$TERMUX_PKG_BUILDER_SCRIPT"; then
242 termux_error_exit "No build.sh script at package dir $TERMUX_PKG_BUILDER_DIR!"
243 fi
244}
245
246# Setup variables used by the build. Not to be overridden by packages.
247termux_step_setup_variables() {
248 : "${ANDROID_HOME:="${HOME}/lib/android-sdk"}"
249 : "${NDK:="${HOME}/lib/android-ndk"}"
4428ae3c 250 : "${TERMUX_MAKE_PROCESSES:="$(nproc)"}"
7b1f1bd3
FF
251 : "${TERMUX_TOPDIR:="$HOME/.termux-build"}"
252 : "${TERMUX_ARCH:="aarch64"}" # arm, aarch64, i686 or x86_64.
253 : "${TERMUX_PREFIX:="/data/data/com.termux/files/usr"}"
254 : "${TERMUX_ANDROID_HOME:="/data/data/com.termux/files/home"}"
255 : "${TERMUX_DEBUG:=""}"
272404e1 256 : "${TERMUX_PKG_API_LEVEL:="21"}"
56601c84 257 : "${TERMUX_ANDROID_BUILD_TOOLS_VERSION:="26.0.1"}"
829516f1 258 : "${TERMUX_NDK_VERSION:="15.2"}"
7b1f1bd3 259
10b023b8 260 if [ "x86_64" = "$TERMUX_ARCH" ] || [ "aarch64" = "$TERMUX_ARCH" ]; then
7b1f1bd3
FF
261 TERMUX_ARCH_BITS=64
262 else
263 TERMUX_ARCH_BITS=32
264 fi
265
266 TERMUX_HOST_PLATFORM="${TERMUX_ARCH}-linux-android"
267 if [ "$TERMUX_ARCH" = "arm" ]; then TERMUX_HOST_PLATFORM="${TERMUX_HOST_PLATFORM}eabi"; fi
268
269 if [ ! -d "$NDK" ]; then
270 termux_error_exit 'NDK not pointing at a directory!'
271 fi
272 if ! grep -s -q "Pkg.Revision = $TERMUX_NDK_VERSION" "$NDK/source.properties"; then
273 termux_error_exit "Wrong NDK version - we need $TERMUX_NDK_VERSION"
274 fi
275
2b0e9dc9
FF
276 # The build tuple that may be given to --build configure flag:
277 TERMUX_BUILD_TUPLE=$(sh "$TERMUX_SCRIPTDIR/scripts/config.guess")
278
7b1f1bd3
FF
279 # We do not put all of build-tools/$TERMUX_ANDROID_BUILD_TOOLS_VERSION/ into PATH
280 # to avoid stuff like arm-linux-androideabi-ld there to conflict with ones from
281 # the standalone toolchain.
282 TERMUX_DX=$ANDROID_HOME/build-tools/$TERMUX_ANDROID_BUILD_TOOLS_VERSION/dx
7b1f1bd3
FF
283
284 TERMUX_COMMON_CACHEDIR="$TERMUX_TOPDIR/_cache"
285 TERMUX_DEBDIR="$TERMUX_SCRIPTDIR/debs"
286 TERMUX_ELF_CLEANER=$TERMUX_COMMON_CACHEDIR/termux-elf-cleaner
287
7b1f1bd3
FF
288 export prefix=${TERMUX_PREFIX}
289 export PREFIX=${TERMUX_PREFIX}
7b1f1bd3
FF
290
291 TERMUX_PKG_BUILDDIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/build
292 TERMUX_PKG_CACHEDIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/cache
293 TERMUX_PKG_MASSAGEDIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/massage
294 TERMUX_PKG_PACKAGEDIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/package
295 TERMUX_PKG_SRCDIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/src
296 TERMUX_PKG_SHA256=""
297 TERMUX_PKG_TMPDIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/tmp
298 TERMUX_PKG_HOSTBUILD_DIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/host-build
299 TERMUX_PKG_PLATFORM_INDEPENDENT=""
300 TERMUX_PKG_NO_DEVELSPLIT=""
af4dc416 301 TERMUX_PKG_REVISION="0" # http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version
7b1f1bd3
FF
302 TERMUX_PKG_EXTRA_CONFIGURE_ARGS=""
303 TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS=""
304 TERMUX_PKG_EXTRA_MAKE_ARGS=""
305 TERMUX_PKG_BUILD_IN_SRC=""
306 TERMUX_PKG_RM_AFTER_INSTALL=""
9ec05091 307 TERMUX_PKG_BREAKS="" # https://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
7b1f1bd3 308 TERMUX_PKG_DEPENDS=""
45d85e7f 309 TERMUX_PKG_BUILD_DEPENDS=""
7b1f1bd3
FF
310 TERMUX_PKG_HOMEPAGE=""
311 TERMUX_PKG_DESCRIPTION="FIXME:Add description"
7b1f1bd3
FF
312 TERMUX_PKG_KEEP_STATIC_LIBRARIES="false"
313 TERMUX_PKG_ESSENTIAL=""
314 TERMUX_PKG_CONFLICTS="" # https://www.debian.org/doc/debian-policy/ch-relationships.html#s-conflicts
5f217847 315 TERMUX_PKG_RECOMMENDS="" # https://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
7b1f1bd3
FF
316 TERMUX_PKG_REPLACES=""
317 TERMUX_PKG_CONFFILES=""
318 TERMUX_PKG_INCLUDE_IN_DEVPACKAGE=""
319 TERMUX_PKG_DEVPACKAGE_DEPENDS=""
320 # Set if a host build should be done in TERMUX_PKG_HOSTBUILD_DIR:
321 TERMUX_PKG_HOSTBUILD=""
322 TERMUX_PKG_MAINTAINER="Fredrik Fornwall @fornwall"
2f0de587 323 TERMUX_PKG_CLANG=yes # does nothing for cmake based packages. clang is chosen by cmake
58f7a21c 324 TERMUX_PKG_FORCE_CMAKE=no # if the package has autotools as well as cmake, then set this to prefer cmake
7b1f1bd3
FF
325
326 unset CFLAGS CPPFLAGS LDFLAGS CXXFLAGS
327}
328
329# Save away and restore build setups which may change between builds.
330termux_step_handle_buildarch() {
331 # If $TERMUX_PREFIX already exists, it may have been built for a different arch
332 local TERMUX_ARCH_FILE=/data/TERMUX_ARCH
333 if [ -f "${TERMUX_ARCH_FILE}" ]; then
334 local TERMUX_PREVIOUS_ARCH
335 TERMUX_PREVIOUS_ARCH=$(cat $TERMUX_ARCH_FILE)
336 if [ "$TERMUX_PREVIOUS_ARCH" != "$TERMUX_ARCH" ]; then
337 local TERMUX_DATA_BACKUPDIRS=$TERMUX_TOPDIR/_databackups
338 mkdir -p "$TERMUX_DATA_BACKUPDIRS"
339 local TERMUX_DATA_PREVIOUS_BACKUPDIR=$TERMUX_DATA_BACKUPDIRS/$TERMUX_PREVIOUS_ARCH
340 local TERMUX_DATA_CURRENT_BACKUPDIR=$TERMUX_DATA_BACKUPDIRS/$TERMUX_ARCH
341 # Save current /data (removing old backup if any)
342 if test -e "$TERMUX_DATA_PREVIOUS_BACKUPDIR"; then
343 termux_error_exit "Directory already exists"
344 fi
d7310004
FF
345 if [ -d /data/data ]; then
346 mv /data/data "$TERMUX_DATA_PREVIOUS_BACKUPDIR"
347 fi
7b1f1bd3
FF
348 # Restore new one (if any)
349 if [ -d "$TERMUX_DATA_CURRENT_BACKUPDIR" ]; then
350 mv "$TERMUX_DATA_CURRENT_BACKUPDIR" /data/data
351 fi
352 fi
353 fi
354
355 # Keep track of current arch we are building for.
356 echo "$TERMUX_ARCH" > $TERMUX_ARCH_FILE
19fb617a
FF
357}
358
7b1f1bd3
FF
359# Source the package build script and start building. No to be overridden by packages.
360termux_step_start_build() {
361 # shellcheck source=/dev/null
362 source "$TERMUX_PKG_BUILDER_SCRIPT"
19fb617a 363
28c3a74a
FF
364 TERMUX_STANDALONE_TOOLCHAIN="$TERMUX_TOPDIR/_lib/${TERMUX_NDK_VERSION}-${TERMUX_ARCH}-${TERMUX_PKG_API_LEVEL}"
365 # Bump the below version if a change is made in toolchain setup to ensure
366 # that everyone gets an updated toolchain:
b461954b 367 TERMUX_STANDALONE_TOOLCHAIN+="-v14"
28c3a74a 368
7b1f1bd3
FF
369 if [ -n "${TERMUX_PKG_BLACKLISTED_ARCHES:=""}" ] && [ "$TERMUX_PKG_BLACKLISTED_ARCHES" != "${TERMUX_PKG_BLACKLISTED_ARCHES/$TERMUX_ARCH/}" ]; then
370 echo "Skipping building $TERMUX_PKG_NAME for arch $TERMUX_ARCH"
371 exit 0
372 fi
373
374 if [ -z "${TERMUX_SKIP_DEPCHECK:=""}" ]; then
93ae139b
FF
375 local p TERMUX_ALL_DEPS
376 TERMUX_ALL_DEPS=$(./scripts/buildorder.py "$TERMUX_PKG_NAME")
377 for p in $TERMUX_ALL_DEPS; do
7b1f1bd3
FF
378 if [ "$p" != "$TERMUX_PKG_NAME" ]; then
379 echo "Building dependency $p if necessary..."
380 ./build-package.sh -a $TERMUX_ARCH -s "$p"
381 fi
382 done
383 fi
2c1aa558 384
7b1f1bd3 385 TERMUX_PKG_FULLVERSION=$TERMUX_PKG_VERSION
af4dc416 386 if [ "$TERMUX_PKG_REVISION" != "0" ] || [ "$TERMUX_PKG_FULLVERSION" != "${TERMUX_PKG_FULLVERSION/-/}" ]; then
7b1f1bd3 387 # "0" is the default revision, so only include it if the upstream versions contains "-" itself
af4dc416 388 TERMUX_PKG_FULLVERSION+="-$TERMUX_PKG_REVISION"
7b1f1bd3 389 fi
59f0d218 390
bc0560aa
FF
391 if [ -z "$TERMUX_DEBUG" ] &&
392 [ -z "${TERMUX_FORCE_BUILD+x}" ] &&
393 [ -e "/data/data/.built-packages/$TERMUX_PKG_NAME" ]; then
7b1f1bd3
FF
394 if [ "$(cat "/data/data/.built-packages/$TERMUX_PKG_NAME")" = "$TERMUX_PKG_FULLVERSION" ]; then
395 echo "$TERMUX_PKG_NAME@$TERMUX_PKG_FULLVERSION built - skipping (rm /data/data/.built-packages/$TERMUX_PKG_NAME to force rebuild)"
396 exit 0
397 fi
398 fi
399
400 # Cleanup old state:
401 rm -Rf "$TERMUX_PKG_BUILDDIR" \
402 "$TERMUX_PKG_PACKAGEDIR" \
403 "$TERMUX_PKG_SRCDIR" \
404 "$TERMUX_PKG_TMPDIR" \
405 "$TERMUX_PKG_MASSAGEDIR"
406
407 # Ensure folders present (but not $TERMUX_PKG_SRCDIR, it will be created in build)
408 mkdir -p "$TERMUX_COMMON_CACHEDIR" \
409 "$TERMUX_DEBDIR" \
410 "$TERMUX_PKG_BUILDDIR" \
411 "$TERMUX_PKG_PACKAGEDIR" \
412 "$TERMUX_PKG_TMPDIR" \
413 "$TERMUX_PKG_CACHEDIR" \
414 "$TERMUX_PKG_MASSAGEDIR" \
7b1f1bd3
FF
415 $TERMUX_PREFIX/{bin,etc,lib,libexec,share,tmp,include}
416
417 # Make $TERMUX_PREFIX/bin/sh executable on the builder, so that build
418 # scripts can assume that it works on both builder and host later on:
419 ln -f -s /bin/sh "$TERMUX_PREFIX/bin/sh"
420
bd54a46a
FF
421 local TERMUX_ELF_CLEANER_SRC=$TERMUX_COMMON_CACHEDIR/termux-elf-cleaner.cpp
422 local TERMUX_ELF_CLEANER_VERSION=$(bash -c ". $TERMUX_SCRIPTDIR/packages/termux-elf-cleaner/build.sh; echo \$TERMUX_PKG_VERSION")
423 termux_download \
424 https://raw.githubusercontent.com/termux/termux-elf-cleaner/v$TERMUX_ELF_CLEANER_VERSION/termux-elf-cleaner.cpp \
425 $TERMUX_ELF_CLEANER_SRC \
426 11a38372f4d0e36b7556382c7ecffecae35cee8b68daaee2dbee025f758e17ee
7b1f1bd3
FF
427 if [ "$TERMUX_ELF_CLEANER_SRC" -nt "$TERMUX_ELF_CLEANER" ]; then
428 g++ -std=c++11 -Wall -Wextra -pedantic -Os "$TERMUX_ELF_CLEANER_SRC" -o "$TERMUX_ELF_CLEANER"
429 fi
430
431 if [ -n "$TERMUX_PKG_BUILD_IN_SRC" ]; then
432 echo "Building in src due to TERMUX_PKG_BUILD_IN_SRC being set" > "$TERMUX_PKG_BUILDDIR/BUILDING_IN_SRC.txt"
433 TERMUX_PKG_BUILDDIR=$TERMUX_PKG_SRCDIR
434 fi
435
436 echo "termux - building $TERMUX_PKG_NAME for arch $TERMUX_ARCH..."
437 test -t 1 && printf "\033]0;%s...\007" "$TERMUX_PKG_NAME"
438
0dc0e842
FF
439 # Avoid exporting PKG_CONFIG_LIBDIR until after termux_step_host_build.
440 export TERMUX_PKG_CONFIG_LIBDIR=$TERMUX_PREFIX/lib/pkgconfig
441 # Add a pkg-config file for the system zlib.
b833ad7a 442 mkdir -p "$TERMUX_PKG_CONFIG_LIBDIR"
0dc0e842 443 cat > "$TERMUX_PKG_CONFIG_LIBDIR/zlib.pc" <<-HERE
7b1f1bd3
FF
444 Name: zlib
445 Description: zlib compression library
446 Version: 1.2.8
447 Requires:
448 Libs: -lz
449 HERE
450
451 # Keep track of when build started so we can see what files have been created.
452 # We start by sleeping so that any generated files above (such as zlib.pc) get
453 # an older timestamp than the TERMUX_BUILD_TS_FILE.
454 sleep 1
455 TERMUX_BUILD_TS_FILE=$TERMUX_PKG_TMPDIR/timestamp_$TERMUX_PKG_NAME
456 touch "$TERMUX_BUILD_TS_FILE"
457}
458
459# Run just after sourcing $TERMUX_PKG_BUILDER_SCRIPT. May be overridden by packages.
01e699d9 460termux_step_extract_package() {
7b1f1bd3
FF
461 if [ -z "${TERMUX_PKG_SRCURL:=""}" ]; then
462 mkdir -p "$TERMUX_PKG_SRCDIR"
463 return
464 fi
465 cd "$TERMUX_PKG_TMPDIR"
466 local filename
467 filename=$(basename "$TERMUX_PKG_SRCURL")
468 local file="$TERMUX_PKG_CACHEDIR/$filename"
c9d4e74f 469 termux_download "$TERMUX_PKG_SRCURL" "$file" "$TERMUX_PKG_SHA256"
e239964b 470
1b3f3ebd
FF
471 local folder
472 set +o pipefail
7b1f1bd3 473 if [ "${file##*.}" = zip ]; then
1b3f3ebd
FF
474 folder=`unzip -qql "$file" | head -n1 | tr -s ' ' | cut -d' ' -f5-`
475 rm -Rf $folder
7b1f1bd3 476 unzip -q "$file"
59f0d218 477 else
1b3f3ebd
FF
478 folder=`tar tf "$file" | head -1 | sed -e 's/\/.*//'`
479 rm -Rf $folder
2f122eed 480 tar xf "$file"
59f0d218 481 fi
1b3f3ebd 482 set -o pipefail
7b1f1bd3 483 mv $folder "$TERMUX_PKG_SRCDIR"
59f0d218
FF
484}
485
7b1f1bd3 486# Hook for packages to act just after the package has been extracted.
508fa73c 487# Invoked in $TERMUX_PKG_SRCDIR.
01e699d9 488termux_step_post_extract_package() {
59f0d218
FF
489 return
490}
491
7b1f1bd3
FF
492# Optional host build. Not to be overridden by packages.
493termux_step_handle_hostbuild() {
494 if [ "x$TERMUX_PKG_HOSTBUILD" = "x" ]; then return; fi
93ae139b 495
7b1f1bd3
FF
496 cd "$TERMUX_PKG_SRCDIR"
497 for patch in $TERMUX_PKG_BUILDER_DIR/*.patch.beforehostbuild; do
498 test -f "$patch" && sed "s%\@TERMUX_PREFIX\@%${TERMUX_PREFIX}%g" "$patch" | patch --silent -p1
499 done
93ae139b
FF
500
501 local TERMUX_HOSTBUILD_MARKER="$TERMUX_PKG_HOSTBUILD_DIR/TERMUX_BUILT_FOR_$TERMUX_PKG_VERSION"
502 if [ ! -f "$TERMUX_HOSTBUILD_MARKER" ]; then
503 rm -Rf "$TERMUX_PKG_HOSTBUILD_DIR"
504 mkdir -p "$TERMUX_PKG_HOSTBUILD_DIR"
7b1f1bd3
FF
505 cd "$TERMUX_PKG_HOSTBUILD_DIR"
506 termux_step_host_build
93ae139b 507 touch "$TERMUX_HOSTBUILD_MARKER"
7b1f1bd3
FF
508 fi
509}
510
59f0d218
FF
511# Perform a host build. Will be called in $TERMUX_PKG_HOSTBUILD_DIR.
512# After termux_step_post_extract_package() and before termux_step_patch_package()
01e699d9 513termux_step_host_build() {
7b1f1bd3 514 "$TERMUX_PKG_SRCDIR/configure" ${TERMUX_PKG_EXTRA_HOSTBUILD_CONFIGURE_ARGS}
4663ac70 515 make -j $TERMUX_MAKE_PROCESSES
59f0d218
FF
516}
517
7b1f1bd3
FF
518# Setup a standalone Android NDK toolchain. Not to be overridden by packages.
519termux_step_setup_toolchain() {
520 # We put this after system PATH to avoid picking up toolchain stripped python
521 export PATH=$PATH:$TERMUX_STANDALONE_TOOLCHAIN/bin
522
272404e1 523 export CFLAGS=""
619b9664
FF
524 export LDFLAGS="-L${TERMUX_PREFIX}/lib"
525
7b1f1bd3
FF
526 if [ "$TERMUX_PKG_CLANG" = "no" ]; then
527 export AS=${TERMUX_HOST_PLATFORM}-gcc
528 export CC=$TERMUX_HOST_PLATFORM-gcc
529 export CXX=$TERMUX_HOST_PLATFORM-g++
619b9664
FF
530 LDFLAGS+=" -specs=$TERMUX_SCRIPTDIR/termux.spec"
531 CFLAGS+=" -specs=$TERMUX_SCRIPTDIR/termux.spec"
7b1f1bd3 532 else
2f0de587 533 export AS=${TERMUX_HOST_PLATFORM}-clang
7b1f1bd3
FF
534 export CC=$TERMUX_HOST_PLATFORM-clang
535 export CXX=$TERMUX_HOST_PLATFORM-clang++
7b1f1bd3 536 fi
619b9664
FF
537
538 export AR=$TERMUX_HOST_PLATFORM-ar
7b1f1bd3
FF
539 export CPP=${TERMUX_HOST_PLATFORM}-cpp
540 export CC_FOR_BUILD=gcc
541 export LD=$TERMUX_HOST_PLATFORM-ld
542 export OBJDUMP=$TERMUX_HOST_PLATFORM-objdump
543 # Setup pkg-config for cross-compiling:
544 export PKG_CONFIG=$TERMUX_STANDALONE_TOOLCHAIN/bin/${TERMUX_HOST_PLATFORM}-pkg-config
545 export RANLIB=$TERMUX_HOST_PLATFORM-ranlib
546 export READELF=$TERMUX_HOST_PLATFORM-readelf
547 export STRIP=$TERMUX_HOST_PLATFORM-strip
548
7b1f1bd3
FF
549 # Android 7 started to support DT_RUNPATH (but not DT_RPATH), so we may want
550 # LDFLAGS+="-Wl,-rpath=$TERMUX_PREFIX/lib -Wl,--enable-new-dtags"
551 # and no longer remove DT_RUNPATH in termux-elf-cleaner.
552
553 if [ "$TERMUX_ARCH" = "arm" ]; then
c9e68e0d
FF
554 # https://developer.android.com/ndk/guides/standalone_toolchain.html#abi_compatibility:
555 # "We recommend using the -mthumb compiler flag to force the generation of 16-bit Thumb-2 instructions".
556 # With r13 of the ndk ruby 2.4.0 segfaults when built on arm with clang without -mthumb.
557 CFLAGS+=" -march=armv7-a -mfpu=neon -mfloat-abi=softfp -mthumb"
a5cdd56d 558 LDFLAGS+=" -march=armv7-a"
7b1f1bd3
FF
559 elif [ "$TERMUX_ARCH" = "i686" ]; then
560 # From $NDK/docs/CPU-ARCH-ABIS.html:
561 CFLAGS+=" -march=i686 -msse3 -mstackrealign -mfpmath=sse"
562 elif [ "$TERMUX_ARCH" = "aarch64" ]; then
0d1dde5f 563 :
7b1f1bd3
FF
564 elif [ "$TERMUX_ARCH" = "x86_64" ]; then
565 :
566 else
567 termux_error_exit "Invalid arch '$TERMUX_ARCH' - support arches are 'arm', 'i686', 'aarch64', 'x86_64'"
568 fi
569
570 if [ -n "$TERMUX_DEBUG" ]; then
571 CFLAGS+=" -g3 -O1 -fstack-protector --param ssp-buffer-size=4 -D_FORTIFY_SOURCE=2"
572 else
fbf60305 573 if [ "$TERMUX_PKG_CLANG" = "no" ]; then
430eef3b
FF
574 CFLAGS+=" -Os"
575 else
fbf60305
FF
576 if [ "$TERMUX_PKG_NAME" = "ruby" -a "$TERMUX_ARCH" = arm ]; then
577 # This exception is to avoid a broken ruby on 32-bit arm
578 # with NDK r15c and ruby 2.4.2 - see #1520.
579 CFLAGS+=" -O1"
580 else
581 # -Oz seems good for clang, see https://github.com/android-ndk/ndk/issues/133
582 CFLAGS+=" -Oz"
583 fi
430eef3b 584 fi
7b1f1bd3
FF
585 fi
586
587 export CXXFLAGS="$CFLAGS"
588 export CPPFLAGS="-I${TERMUX_PREFIX}/include"
589
590 if [ "$TERMUX_PKG_DEPENDS" != "${TERMUX_PKG_DEPENDS/libandroid-support/}" ]; then
591 # If using the android support library, link to it and include its headers as system headers:
592 CPPFLAGS+=" -isystem $TERMUX_PREFIX/include/libandroid-support"
593 LDFLAGS+=" -landroid-support"
594 fi
595
596 export ac_cv_func_getpwent=no
597 export ac_cv_func_getpwnam=no
598 export ac_cv_func_getpwuid=no
2173f730 599 export ac_cv_func_sigsetmask=no
7b1f1bd3
FF
600
601 if [ ! -d $TERMUX_STANDALONE_TOOLCHAIN ]; then
602 # Do not put toolchain in place until we are done with setup, to avoid having a half setup
603 # toolchain left in place if something goes wrong (or process is just aborted):
2f0de587 604 local _TERMUX_TOOLCHAIN_TMPDIR=${TERMUX_STANDALONE_TOOLCHAIN}-tmp
7b1f1bd3
FF
605 rm -Rf $_TERMUX_TOOLCHAIN_TMPDIR
606
607 local _NDK_ARCHNAME=$TERMUX_ARCH
608 if [ "$TERMUX_ARCH" = "aarch64" ]; then
609 _NDK_ARCHNAME=arm64
610 elif [ "$TERMUX_ARCH" = "i686" ]; then
611 _NDK_ARCHNAME=x86
612 fi
2f0de587 613
7b1f1bd3 614 "$NDK/build/tools/make_standalone_toolchain.py" \
272404e1 615 --api "$TERMUX_PKG_API_LEVEL" \
7b1f1bd3 616 --arch $_NDK_ARCHNAME \
d946e67c 617 --stl=libc++ \
7b1f1bd3
FF
618 --install-dir $_TERMUX_TOOLCHAIN_TMPDIR
619
d946e67c
FF
620 # Remove android-support header wrapping not needed on android-21:
621 rm -Rf $_TERMUX_TOOLCHAIN_TMPDIR/sysroot/usr/local
622
07884eae
FF
623 local wrapped plusplus CLANG_TARGET=$TERMUX_HOST_PLATFORM
624 if [ $TERMUX_ARCH = arm ]; then CLANG_TARGET=${CLANG_TARGET/arm-/armv7a-}; fi
625 for wrapped in ${TERMUX_HOST_PLATFORM}-clang clang; do
626 for plusplus in "" "++"; do
627 local FILE_TO_REPLACE=$_TERMUX_TOOLCHAIN_TMPDIR/bin/${wrapped}${plusplus}
628 if [ ! -f $FILE_TO_REPLACE ]; then
629 termux_error_exit "No toolchain file to override: $FILE_TO_REPLACE"
630 fi
7048a1f2 631 cp "$TERMUX_SCRIPTDIR/scripts/clang-pie-wrapper" $FILE_TO_REPLACE
58e38b47 632 sed -i "s/COMPILER/clang50$plusplus/" $FILE_TO_REPLACE
07884eae
FF
633 sed -i "s/CLANG_TARGET/$CLANG_TARGET/" $FILE_TO_REPLACE
634 done
2f0de587
FF
635 done
636
d946e67c 637 if [ "$TERMUX_ARCH" = "aarch64" ]; then
0d1dde5f
FF
638 # Use gold by default to work around https://github.com/android-ndk/ndk/issues/148
639 cp $_TERMUX_TOOLCHAIN_TMPDIR/bin/aarch64-linux-android-ld.gold \
640 $_TERMUX_TOOLCHAIN_TMPDIR/bin/aarch64-linux-android-ld
c8d1a650
FF
641 cp $_TERMUX_TOOLCHAIN_TMPDIR/aarch64-linux-android/bin/ld.gold \
642 $_TERMUX_TOOLCHAIN_TMPDIR/aarch64-linux-android/bin/ld
7b1f1bd3
FF
643 fi
644
d1f566f7
FF
645 if [ "$TERMUX_ARCH" = "arm" ]; then
646 # Linker wrapper script to add '--exclude-libs libgcc.a', see
647 # https://github.com/android-ndk/ndk/issues/379
648 # https://android-review.googlesource.com/#/c/389852/
649 local linker
650 for linker in ld ld.bfd ld.gold; do
651 local wrap_linker=$_TERMUX_TOOLCHAIN_TMPDIR/$TERMUX_HOST_PLATFORM/bin/$linker
652 local real_linker=$_TERMUX_TOOLCHAIN_TMPDIR/$TERMUX_HOST_PLATFORM/bin/$linker.real
653 cp $wrap_linker $real_linker
654 echo '#!/bin/bash' > $wrap_linker
655 echo -n '`dirname $0`/' >> $wrap_linker
656 echo -n $linker.real >> $wrap_linker
657 echo ' --exclude-libs libgcc.a "$@"' >> $wrap_linker
658 done
659 fi
660
7b1f1bd3
FF
661 cd $_TERMUX_TOOLCHAIN_TMPDIR/sysroot
662
d3e5452e 663 for f in $TERMUX_SCRIPTDIR/ndk-patches/*.patch; do
7b1f1bd3
FF
664 sed "s%\@TERMUX_PREFIX\@%${TERMUX_PREFIX}%g" "$f" | \
665 sed "s%\@TERMUX_HOME\@%${TERMUX_ANDROID_HOME}%g" | \
666 patch --silent -p1;
667 done
42562d13
FF
668 # elf.h: Taken from glibc since the elf.h in the NDK is lacking.
669 # sysexits.h: Header-only and used by a few programs.
670 # ifaddrs.h: Added in android-24 unified headers, use a inline implementation for now.
50ed3357 671 cp "$TERMUX_SCRIPTDIR"/ndk-patches/{elf.h,sysexits.h,ifaddrs.h,libintl.h} usr/include
7b1f1bd3 672
67d2d615
FF
673 # Remove <sys/shm.h> from the NDK in favour of that from the libandroid-shmem.
674 # Also remove <sys/sem.h> as it doesn't work for non-root.
d04dc139
FF
675 rm usr/include/sys/{shm.h,sem.h}
676
272404e1 677 sed -i "s/define __ANDROID_API__ __ANDROID_API_FUTURE__/define __ANDROID_API__ $TERMUX_PKG_API_LEVEL/" \
d04dc139 678 usr/include/android/api-level.h
f39b87c2 679
b26283d4
FF
680 local _LIBDIR=usr/lib
681 if [ $TERMUX_ARCH = x86_64 ]; then _LIBDIR+=64; fi
682 $TERMUX_ELF_CLEANER $_LIBDIR/*.so
7b1f1bd3
FF
683
684 # zlib is really version 1.2.8 in the Android platform (at least
685 # starting from Android 5), not older as the NDK headers claim.
686 for file in zconf.h zlib.h; do
d04dc139 687 curl -o usr/include/$file \
7b1f1bd3
FF
688 https://raw.githubusercontent.com/madler/zlib/v1.2.8/$file
689 done
690 unset file
aa1865fe 691 cd $_TERMUX_TOOLCHAIN_TMPDIR/include/c++/4.9.x
692 sed "s%\@TERMUX_HOST_PLATFORM\@%${TERMUX_HOST_PLATFORM}%g" $TERMUX_SCRIPTDIR/ndk-patches/*.cpppatch | patch -p1
7b1f1bd3
FF
693 mv $_TERMUX_TOOLCHAIN_TMPDIR $TERMUX_STANDALONE_TOOLCHAIN
694 fi
695
d946e67c 696 local _STL_LIBFILE_NAME=libc++_shared.so
d1f566f7
FF
697 if [ ! -f $TERMUX_PREFIX/lib/libstdc++.so ]; then
698 # Setup libgnustl_shared.so in $PREFIX/lib and libstdc++.so as a link to it,
7b1f1bd3
FF
699 # so that other C++ using packages links to it instead of the default android
700 # C++ library which does not support exceptions or STL:
701 # https://developer.android.com/ndk/guides/cpp-support.html
702 # We do however want to avoid installing this, to avoid problems where e.g.
703 # libm.so on some i686 devices links against libstdc++.so.
704 # The libgnustl_shared.so library will be packaged in the libgnustl package
705 # which is part of the base Termux installation.
706 mkdir -p "$TERMUX_PREFIX/lib"
707 cd "$TERMUX_PREFIX/lib"
d946e67c
FF
708
709 local _STL_LIBFILE=
7b1f1bd3 710 if [ "$TERMUX_ARCH" = arm ]; then
d946e67c 711 local _STL_LIBFILE=$TERMUX_STANDALONE_TOOLCHAIN/${TERMUX_HOST_PLATFORM}/lib/armv7-a/$_STL_LIBFILE_NAME
7b1f1bd3 712 elif [ "$TERMUX_ARCH" = x86_64 ]; then
d946e67c
FF
713 local _STL_LIBFILE=$TERMUX_STANDALONE_TOOLCHAIN/${TERMUX_HOST_PLATFORM}/lib64/$_STL_LIBFILE_NAME
714 else
715 local _STL_LIBFILE=$TERMUX_STANDALONE_TOOLCHAIN/${TERMUX_HOST_PLATFORM}/lib/$_STL_LIBFILE_NAME
7b1f1bd3 716 fi
d946e67c 717
7b1f1bd3 718 cp "$_STL_LIBFILE" .
d946e67c
FF
719 $STRIP --strip-unneeded $_STL_LIBFILE_NAME
720 $TERMUX_ELF_CLEANER $_STL_LIBFILE_NAME
d1f566f7
FF
721 if [ $TERMUX_ARCH = "arm" ]; then
722 # Use a linker script to get libunwind.a.
723 echo 'INPUT(-lunwind -lc++_shared)' > libstdc++.so
724 else
725 ln -f $_STL_LIBFILE_NAME libstdc++.so
726 fi
7b1f1bd3
FF
727 fi
728
0dc0e842 729 export PKG_CONFIG_LIBDIR="$TERMUX_PKG_CONFIG_LIBDIR"
7b1f1bd3
FF
730 # Create a pkg-config wrapper. We use path to host pkg-config to
731 # avoid picking up a cross-compiled pkg-config later on.
732 local _HOST_PKGCONFIG
733 _HOST_PKGCONFIG=$(which pkg-config)
734 mkdir -p $TERMUX_STANDALONE_TOOLCHAIN/bin "$PKG_CONFIG_LIBDIR"
735 cat > "$PKG_CONFIG" <<-HERE
736 #!/bin/sh
737 export PKG_CONFIG_DIR=
738 export PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR
739 exec $_HOST_PKGCONFIG "\$@"
740 HERE
741 chmod +x "$PKG_CONFIG"
742}
743
2b0e9dc9 744# Apply all *.patch files for the package. Not to be overridden by packages.
01e699d9 745termux_step_patch_package() {
7b1f1bd3 746 cd "$TERMUX_PKG_SRCDIR"
8f7dda83 747 # Suffix patch with ".patch32" or ".patch64" to only apply for these bitnesses:
7106823d 748 shopt -s nullglob
8f7dda83 749 for patch in $TERMUX_PKG_BUILDER_DIR/*.patch{$TERMUX_ARCH_BITS,}; do
7b1f1bd3 750 test -f "$patch" && sed "s%\@TERMUX_PREFIX\@%${TERMUX_PREFIX}%g" "$patch" | \
dc6476e9 751 sed "s%\@TERMUX_HOME\@%${TERMUX_ANDROID_HOME}%g" | \
a0057943 752 patch --silent -p1
59f0d218 753 done
a599e41a 754 shopt -u nullglob
7106823d 755}
59f0d218 756
7106823d
VB
757# Replace autotools build-aux/config.{sub,guess} with ours to add android targets.
758termux_step_replace_guess_scripts () {
759 cd "$TERMUX_PKG_SRCDIR"
7b1f1bd3
FF
760 find . -name config.sub -exec chmod u+w '{}' \; -exec cp "$TERMUX_SCRIPTDIR/scripts/config.sub" '{}' \;
761 find . -name config.guess -exec chmod u+w '{}' \; -exec cp "$TERMUX_SCRIPTDIR/scripts/config.guess" '{}' \;
59f0d218
FF
762}
763
7b1f1bd3 764# For package scripts to override. Called in $TERMUX_PKG_BUILDDIR.
01e699d9 765termux_step_pre_configure() {
7b1f1bd3 766 return
59f0d218
FF
767}
768
58f7a21c 769termux_step_configure_autotools () {
7b1f1bd3 770 if [ ! -e "$TERMUX_PKG_SRCDIR/configure" ]; then return; fi
59f0d218
FF
771
772 DISABLE_STATIC="--disable-static"
773 if [ "$TERMUX_PKG_EXTRA_CONFIGURE_ARGS" != "${TERMUX_PKG_EXTRA_CONFIGURE_ARGS/--enable-static/}" ]; then
774 # Do not --disable-static if package explicitly enables it (e.g. gdb needs enable-static to build)
775 DISABLE_STATIC=""
776 fi
777
778 DISABLE_NLS="--disable-nls"
779 if [ "$TERMUX_PKG_EXTRA_CONFIGURE_ARGS" != "${TERMUX_PKG_EXTRA_CONFIGURE_ARGS/--enable-nls/}" ]; then
780 # Do not --disable-nls if package explicitly enables it (for gettext itself)
781 DISABLE_NLS=""
782 fi
783
784 ENABLE_SHARED="--enable-shared"
785 if [ "$TERMUX_PKG_EXTRA_CONFIGURE_ARGS" != "${TERMUX_PKG_EXTRA_CONFIGURE_ARGS/--disable-shared/}" ]; then
786 ENABLE_SHARED=""
787 fi
788 HOST_FLAG="--host=$TERMUX_HOST_PLATFORM"
789 if [ "$TERMUX_PKG_EXTRA_CONFIGURE_ARGS" != "${TERMUX_PKG_EXTRA_CONFIGURE_ARGS/--host=/}" ]; then
790 HOST_FLAG=""
791 fi
66926ecd
VB
792 LIBEXEC_FLAG="--libexecdir=$TERMUX_PREFIX/libexec"
793 if [ "$TERMUX_PKG_EXTRA_CONFIGURE_ARGS" != "${TERMUX_PKG_EXTRA_CONFIGURE_ARGS/--libexecdir=/}" ]; then
794 LIBEXEC_FLAG=""
795 fi
59f0d218
FF
796
797 # Some packages provides a $PKG-config script which some configure scripts pickup instead of pkg-config:
7b1f1bd3 798 mkdir "$TERMUX_PKG_TMPDIR/config-scripts"
59f0d218 799 for f in $TERMUX_PREFIX/bin/*config; do
7b1f1bd3 800 test -f "$f" && cp "$f" "$TERMUX_PKG_TMPDIR/config-scripts"
59f0d218 801 done
59f0d218
FF
802 export PATH=$TERMUX_PKG_TMPDIR/config-scripts:$PATH
803
00d9769e
FF
804 # Avoid gnulib wrapping of functions when cross compiling. See
805 # http://wiki.osdev.org/Cross-Porting_Software#Gnulib
806 # https://gitlab.com/sortix/sortix/wikis/Gnulib
807 # https://github.com/termux/termux-packages/issues/76
808 local AVOID_GNULIB=""
0dc0e842
FF
809 AVOID_GNULIB+=" ac_cv_func_calloc_0_nonnull=yes"
810 AVOID_GNULIB+=" ac_cv_func_chown_works=yes"
811 AVOID_GNULIB+=" ac_cv_func_getgroups_works=yes"
00d9769e
FF
812 AVOID_GNULIB+=" ac_cv_func_malloc_0_nonnull=yes"
813 AVOID_GNULIB+=" ac_cv_func_realloc_0_nonnull=yes"
814 AVOID_GNULIB+=" am_cv_func_working_getline=yes"
815 AVOID_GNULIB+=" gl_cv_func_dup2_works=yes"
816 AVOID_GNULIB+=" gl_cv_func_fcntl_f_dupfd_cloexec=yes"
817 AVOID_GNULIB+=" gl_cv_func_fcntl_f_dupfd_works=yes"
542aab6b 818 AVOID_GNULIB+=" gl_cv_func_fnmatch_posix=yes"
00d9769e
FF
819 AVOID_GNULIB+=" gl_cv_func_getcwd_abort_bug=no"
820 AVOID_GNULIB+=" gl_cv_func_getcwd_null=yes"
821 AVOID_GNULIB+=" gl_cv_func_getcwd_path_max=yes"
822 AVOID_GNULIB+=" gl_cv_func_getcwd_posix_signature=yes"
823 AVOID_GNULIB+=" gl_cv_func_gettimeofday_clobber=no"
824 AVOID_GNULIB+=" gl_cv_func_gettimeofday_posix_signature=yes"
825 AVOID_GNULIB+=" gl_cv_func_link_works=yes"
826 AVOID_GNULIB+=" gl_cv_func_lstat_dereferences_slashed_symlink=yes"
542aab6b 827 AVOID_GNULIB+=" gl_cv_func_malloc_0_nonnull=yes"
00d9769e
FF
828 AVOID_GNULIB+=" gl_cv_func_memchr_works=yes"
829 AVOID_GNULIB+=" gl_cv_func_mkdir_trailing_dot_works=yes"
830 AVOID_GNULIB+=" gl_cv_func_mkdir_trailing_slash_works=yes"
0dc0e842 831 AVOID_GNULIB+=" gl_cv_func_mkfifo_works=yes"
ea41b461 832 AVOID_GNULIB+=" gl_cv_func_realpath_works=yes"
00d9769e 833 AVOID_GNULIB+=" gl_cv_func_select_detects_ebadf=yes"
542aab6b 834 AVOID_GNULIB+=" gl_cv_func_snprintf_posix=yes"
00d9769e 835 AVOID_GNULIB+=" gl_cv_func_snprintf_retval_c99=yes"
542aab6b 836 AVOID_GNULIB+=" gl_cv_func_snprintf_truncation_c99=yes"
00d9769e
FF
837 AVOID_GNULIB+=" gl_cv_func_stat_dir_slash=yes"
838 AVOID_GNULIB+=" gl_cv_func_stat_file_slash=yes"
839 AVOID_GNULIB+=" gl_cv_func_strerror_0_works=yes"
840 AVOID_GNULIB+=" gl_cv_func_symlink_works=yes"
841 AVOID_GNULIB+=" gl_cv_func_tzset_clobber=no"
842 AVOID_GNULIB+=" gl_cv_func_unlink_honors_slashes=yes"
843 AVOID_GNULIB+=" gl_cv_func_unlink_honors_slashes=yes"
542aab6b
FF
844 AVOID_GNULIB+=" gl_cv_func_vsnprintf_posix=yes"
845 AVOID_GNULIB+=" gl_cv_func_vsnprintf_zerosize_c99=yes"
00d9769e
FF
846 AVOID_GNULIB+=" gl_cv_func_wcwidth_works=yes"
847 AVOID_GNULIB+=" gl_cv_func_working_getdelim=yes"
848 AVOID_GNULIB+=" gl_cv_func_working_mkstemp=yes"
849 AVOID_GNULIB+=" gl_cv_func_working_mktime=yes"
850 AVOID_GNULIB+=" gl_cv_func_working_strerror=yes"
851 AVOID_GNULIB+=" gl_cv_header_working_fcntl_h=yes"
f7d044c2 852 AVOID_GNULIB+=" gl_cv_C_locale_sans_EILSEQ=yes"
00d9769e
FF
853
854 # NOTE: We do not want to quote AVOID_GNULIB as we want word expansion.
855 env $AVOID_GNULIB "$TERMUX_PKG_SRCDIR/configure" \
59f0d218
FF
856 --disable-dependency-tracking \
857 --prefix=$TERMUX_PREFIX \
7b1f1bd3 858 --disable-rpath --disable-rpath-hack \
59f0d218
FF
859 $HOST_FLAG \
860 $TERMUX_PKG_EXTRA_CONFIGURE_ARGS \
861 $DISABLE_NLS \
862 $ENABLE_SHARED \
863 $DISABLE_STATIC \
66926ecd 864 $LIBEXEC_FLAG
59f0d218
FF
865}
866
58f7a21c
VB
867termux_step_configure_cmake () {
868 termux_setup_cmake
869
58f7a21c
VB
870 local TOOLCHAIN_ARGS="-DCMAKE_ANDROID_STANDALONE_TOOLCHAIN=$TERMUX_STANDALONE_TOOLCHAIN"
871 local BUILD_TYPE=MinSizeRel
872 test -n "$TERMUX_DEBUG" && BUILD_TYPE=Debug
873
874 local CMAKE_PROC=$TERMUX_ARCH
875 test $CMAKE_PROC == "arm" && CMAKE_PROC='armv7-a'
876
2f0de587
FF
877 # XXX: CMAKE_{AR,RANLIB} needed for at least jsoncpp build to not
878 # pick up cross compiled binutils tool in $PREFIX/bin:
7048a1f2
FF
879 cmake -G 'Unix Makefiles' "$TERMUX_PKG_SRCDIR" \
880 -DCMAKE_AR="$(which $AR)" \
d946e67c 881 -DCMAKE_UNAME="$(which uname)" \
7048a1f2 882 -DCMAKE_RANLIB="$(which $RANLIB)" \
58f7a21c
VB
883 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
884 -DCMAKE_CROSSCOMPILING=True \
885 -DCMAKE_C_FLAGS="$CFLAGS $CPPFLAGS" \
2f0de587 886 -DCMAKE_CXX_FLAGS="$CXXFLAGS $CPPFLAGS" \
58f7a21c
VB
887 -DCMAKE_LINKER="$TERMUX_STANDALONE_TOOLCHAIN/bin/$LD $LDFLAGS" \
888 -DCMAKE_FIND_ROOT_PATH=$TERMUX_PREFIX \
889 -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \
890 -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY \
891 -DCMAKE_INSTALL_PREFIX=$TERMUX_PREFIX \
892 -DCMAKE_MAKE_PROGRAM=`which make` \
893 -DCMAKE_SYSTEM_PROCESSOR=$CMAKE_PROC \
894 -DCMAKE_SYSTEM_NAME=Android \
895 -DCMAKE_SYSTEM_VERSION=21 \
896 -DCMAKE_SKIP_INSTALL_RPATH=ON \
897 -DCMAKE_USE_SYSTEM_LIBRARIES=True \
898 -DBUILD_TESTING=OFF \
899 $TERMUX_PKG_EXTRA_CONFIGURE_ARGS $TOOLCHAIN_ARGS
900}
901
f0c1439b
FF
902termux_step_configure_meson () {
903 termux_setup_meson
904 CC=gcc CXX=g++ $TERMUX_MESON \
905 $TERMUX_PKG_SRCDIR \
906 $TERMUX_PKG_BUILDDIR \
907 --cross-file $TERMUX_MESON_CROSSFILE \
908 --prefix $TERMUX_PREFIX \
909 --libdir lib \
910 --buildtype minsize \
911 --strip \
912 $TERMUX_PKG_EXTRA_CONFIGURE_ARGS
913}
914
58f7a21c 915termux_step_configure () {
2f0de587 916 if [ "$TERMUX_PKG_FORCE_CMAKE" == 'no' ] && [ -f "$TERMUX_PKG_SRCDIR/configure" ]; then
58f7a21c
VB
917 termux_step_configure_autotools
918 elif [ -f "$TERMUX_PKG_SRCDIR/CMakeLists.txt" ]; then
919 termux_step_configure_cmake
f0c1439b
FF
920 elif [ -f "$TERMUX_PKG_SRCDIR/meson.build" ]; then
921 termux_step_configure_meson
58f7a21c
VB
922 fi
923}
924
925termux_step_post_configure () {
7b1f1bd3 926 return
59f0d218
FF
927}
928
01e699d9 929termux_step_make() {
caf5d0df 930 if ls ./*akefile &> /dev/null; then
7b1f1bd3
FF
931 if [ -z "$TERMUX_PKG_EXTRA_MAKE_ARGS" ]; then
932 make -j $TERMUX_MAKE_PROCESSES
933 else
2f0de587 934 make -j $TERMUX_MAKE_PROCESSES ${TERMUX_PKG_EXTRA_MAKE_ARGS}
7b1f1bd3
FF
935 fi
936 fi
59f0d218
FF
937}
938
01e699d9 939termux_step_make_install() {
caf5d0df 940 if ls ./*akefile &> /dev/null; then
dd54dd13 941 : "${TERMUX_PKG_MAKE_INSTALL_TARGET:="install"}"
7b1f1bd3
FF
942 # Some packages have problem with parallell install, and it does not buy much, so use -j 1.
943 if [ -z "$TERMUX_PKG_EXTRA_MAKE_ARGS" ]; then
944 make -j 1 ${TERMUX_PKG_MAKE_INSTALL_TARGET}
945 else
946 make -j 1 ${TERMUX_PKG_EXTRA_MAKE_ARGS} ${TERMUX_PKG_MAKE_INSTALL_TARGET}
947 fi
f0c1439b
FF
948 elif test -f build.ninja; then
949 ninja install
7b1f1bd3 950 fi
59f0d218
FF
951}
952
7b1f1bd3 953# Hook function for package scripts to override.
01e699d9 954termux_step_post_make_install() {
7b1f1bd3 955 return
59f0d218
FF
956}
957
01e699d9 958termux_step_extract_into_massagedir() {
7b1f1bd3 959 local TARBALL_ORIG=$TERMUX_PKG_PACKAGEDIR/${TERMUX_PKG_NAME}_orig.tar.gz
59f0d218
FF
960
961 # Build diff tar with what has changed during the build:
962 cd $TERMUX_PREFIX
6b884285
FF
963 tar -N "$TERMUX_BUILD_TS_FILE" \
964 --exclude='lib/libc++_shared.so' --exclude='lib/libstdc++.so' \
965 -czf "$TARBALL_ORIG" .
59f0d218
FF
966
967 # Extract tar in order to massage it
7b1f1bd3
FF
968 mkdir -p "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX"
969 cd "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX"
2f122eed 970 tar xf "$TARBALL_ORIG"
7b1f1bd3 971 rm "$TARBALL_ORIG"
59f0d218
FF
972}
973
01e699d9 974termux_step_massage() {
7b1f1bd3 975 cd "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX"
59f0d218
FF
976
977 # Remove lib/charset.alias which is installed by gettext-using packages:
978 rm -f lib/charset.alias
a0c80d57 979
59f0d218
FF
980 # Remove non-english man pages:
981 test -d share/man && (cd share/man; for f in `ls | grep -v man`; do rm -Rf $f; done )
a0c80d57 982
7b1f1bd3 983 if [ -z "${TERMUX_PKG_KEEP_INFOPAGES+x}" ]; then
a0c80d57
FF
984 # Remove info pages:
985 rm -Rf share/info
986 fi
987
9db621c0
FF
988 # Remove locale files we're not interested in::
989 rm -Rf share/locale
7b1f1bd3 990 if [ -z "${TERMUX_PKG_KEEP_SHARE_DOC+x}" ]; then
9db621c0
FF
991 # Remove info pages:
992 rm -Rf share/doc
993 fi
a0c80d57 994
59f0d218
FF
995 # Remove old kept libraries (readline):
996 find . -name '*.old' -delete
a0c80d57
FF
997
998 # Remove static libraries:
59f0d218
FF
999 if [ $TERMUX_PKG_KEEP_STATIC_LIBRARIES = "false" ]; then
1000 find . -name '*.a' -delete
1001 find . -name '*.la' -delete
1002 fi
1003
1d678bce 1004 # Move over sbin to bin:
7b1f1bd3 1005 for file in sbin/*; do if test -f "$file"; then mv "$file" bin/; fi; done
59f0d218 1006
174285d9 1007 # Remove world permissions and add write permissions.
40534bae
FF
1008 # The -f flag is used to suppress warnings about dangling symlinks (such
1009 # as ones to /system/... which may not exist on the build machine):
174285d9
FF
1010 find . -exec chmod -f u+w,g-rwx,o-rwx \{\} \;
1011
59f0d218 1012 if [ "$TERMUX_DEBUG" = "" ]; then
e5b151a0
FF
1013 # Strip binaries. file(1) may fail for certain unusual files, so disable pipefail.
1014 set +e +o pipefail
1015 find . -type f | xargs -r file | grep -E "(executable|shared object)" | grep ELF | cut -f 1 -d : | \
7b1f1bd3 1016 xargs -r "$STRIP" --strip-unneeded --preserve-dates
e5b151a0 1017 set -e -o pipefail
59f0d218 1018 fi
1d678bce 1019 # Remove DT_ entries which the android 5.1 linker warns about:
7b1f1bd3 1020 find . -type f -print0 | xargs -r -0 "$TERMUX_ELF_CLEANER"
1d678bce
FF
1021
1022 # Fix shebang paths:
6b56911d
FF
1023 while IFS= read -r -d '' file
1024 do
1025 head -c 100 "$file" | grep -E "^#\!.*\\/bin\\/.*" | grep -q -E -v "^#\! ?\\/system" && sed --follow-symlinks -i -E "1 s@^#\!(.*)/bin/(.*)@#\!$TERMUX_PREFIX/bin/\2@" "$file"
1026 done < <(find -L . -type f -print0)
59f0d218
FF
1027
1028 test ! -z "$TERMUX_PKG_RM_AFTER_INSTALL" && rm -Rf $TERMUX_PKG_RM_AFTER_INSTALL
1029
1030 find . -type d -empty -delete # Remove empty directories
1031
7b1f1bd3
FF
1032 # Sub packages:
1033 if [ -d include ] && [ -z "${TERMUX_PKG_NO_DEVELSPLIT}" ]; then
1034 # Add virtual -dev sub package if there are include files:
1035 local _DEVEL_SUBPACKAGE_FILE=$TERMUX_PKG_TMPDIR/${TERMUX_PKG_NAME}-dev.subpackage.sh
38a5614f 1036 echo TERMUX_SUBPKG_INCLUDE=\"include share/vala share/man/man3 lib/pkgconfig share/aclocal lib/cmake $TERMUX_PKG_INCLUDE_IN_DEVPACKAGE\" > "$_DEVEL_SUBPACKAGE_FILE"
dd54dd13 1037 echo "TERMUX_SUBPKG_DESCRIPTION=\"Development files for ${TERMUX_PKG_NAME}\"" >> "$_DEVEL_SUBPACKAGE_FILE"
28dc0ace 1038 if [ -n "$TERMUX_PKG_DEVPACKAGE_DEPENDS" ]; then
6b56911d 1039 echo "TERMUX_SUBPKG_DEPENDS=\"$TERMUX_PKG_NAME,$TERMUX_PKG_DEVPACKAGE_DEPENDS\"" >> "$_DEVEL_SUBPACKAGE_FILE"
28dc0ace 1040 else
01e699d9 1041 echo "TERMUX_SUBPKG_DEPENDS=\"$TERMUX_PKG_NAME\"" >> "$_DEVEL_SUBPACKAGE_FILE"
28dc0ace 1042 fi
7b1f1bd3
FF
1043 fi
1044 # Now build all sub packages
1045 rm -Rf "$TERMUX_TOPDIR/$TERMUX_PKG_NAME/subpackages"
59f0d218 1046 for subpackage in $TERMUX_PKG_BUILDER_DIR/*.subpackage.sh $TERMUX_PKG_TMPDIR/*subpackage.sh; do
7b1f1bd3
FF
1047 test ! -f "$subpackage" && continue
1048 local SUB_PKG_NAME
1049 SUB_PKG_NAME=$(basename "$subpackage" .subpackage.sh)
1050 # Default value is same as main package, but sub package may override:
1051 local TERMUX_SUBPKG_PLATFORM_INDEPENDENT=$TERMUX_PKG_PLATFORM_INDEPENDENT
1052 local SUB_PKG_DIR=$TERMUX_TOPDIR/$TERMUX_PKG_NAME/subpackages/$SUB_PKG_NAME
1053 local TERMUX_SUBPKG_DEPENDS=""
1054 local TERMUX_SUBPKG_CONFLICTS=""
4f85432b 1055 local TERMUX_SUBPKG_REPLACES=""
0d1a1c8e 1056 local TERMUX_SUBPKG_CONFFILES=""
7b1f1bd3
FF
1057 local SUB_PKG_MASSAGE_DIR=$SUB_PKG_DIR/massage/$TERMUX_PREFIX
1058 local SUB_PKG_PACKAGE_DIR=$SUB_PKG_DIR/package
1059 mkdir -p "$SUB_PKG_MASSAGE_DIR" "$SUB_PKG_PACKAGE_DIR"
1060
1061 # shellcheck source=/dev/null
1062 source $subpackage
1063
1064 for includeset in $TERMUX_SUBPKG_INCLUDE; do
1065 local _INCLUDE_DIRSET
1066 _INCLUDE_DIRSET=$(dirname "$includeset")
1067 test "$_INCLUDE_DIRSET" = "." && _INCLUDE_DIRSET=""
1068 if [ -e "$includeset" ] || [ -L "$includeset" ]; then
4432ca97 1069 # Add the -L clause to handle relative symbolic links:
7b1f1bd3
FF
1070 mkdir -p "$SUB_PKG_MASSAGE_DIR/$_INCLUDE_DIRSET"
1071 mv "$includeset" "$SUB_PKG_MASSAGE_DIR/$_INCLUDE_DIRSET"
1072 fi
1073 done
59f0d218 1074
7b1f1bd3
FF
1075 local SUB_PKG_ARCH=$TERMUX_ARCH
1076 test -n "$TERMUX_SUBPKG_PLATFORM_INDEPENDENT" && SUB_PKG_ARCH=all
59f0d218 1077
7b1f1bd3
FF
1078 cd "$SUB_PKG_DIR/massage"
1079 local SUB_PKG_INSTALLSIZE
1080 SUB_PKG_INSTALLSIZE=$(du -sk . | cut -f 1)
2f122eed 1081 tar -cJf "$SUB_PKG_PACKAGE_DIR/data.tar.xz" .
59f0d218 1082
7b1f1bd3 1083 mkdir -p DEBIAN
59f0d218 1084 cd DEBIAN
7b1f1bd3
FF
1085 cat > control <<-HERE
1086 Package: $SUB_PKG_NAME
1087 Architecture: ${SUB_PKG_ARCH}
1088 Installed-Size: ${SUB_PKG_INSTALLSIZE}
1089 Maintainer: $TERMUX_PKG_MAINTAINER
1090 Version: $TERMUX_PKG_FULLVERSION
1091 Description: $TERMUX_SUBPKG_DESCRIPTION
1092 Homepage: $TERMUX_PKG_HOMEPAGE
1093 HERE
1094 test ! -z "$TERMUX_SUBPKG_DEPENDS" && echo "Depends: $TERMUX_SUBPKG_DEPENDS" >> control
1095 test ! -z "$TERMUX_SUBPKG_CONFLICTS" && echo "Conflicts: $TERMUX_SUBPKG_CONFLICTS" >> control
4f85432b 1096 test ! -z "$TERMUX_SUBPKG_REPLACES" && echo "Replaces: $TERMUX_SUBPKG_REPLACES" >> control
2f122eed 1097 tar -cJf "$SUB_PKG_PACKAGE_DIR/control.tar.xz" .
7b1f1bd3 1098
cc7bcfa2
VB
1099 for f in $TERMUX_SUBPKG_CONFFILES; do echo "$TERMUX_PREFIX/$f" >> conffiles; done
1100
7b1f1bd3
FF
1101 # Create the actual .deb file:
1102 TERMUX_SUBPKG_DEBFILE=$TERMUX_DEBDIR/${SUB_PKG_NAME}_${TERMUX_PKG_FULLVERSION}_${SUB_PKG_ARCH}.deb
1103 test ! -f "$TERMUX_COMMON_CACHEDIR/debian-binary" && echo "2.0" > "$TERMUX_COMMON_CACHEDIR/debian-binary"
1104 ar cr "$TERMUX_SUBPKG_DEBFILE" \
1105 "$TERMUX_COMMON_CACHEDIR/debian-binary" \
1106 "$SUB_PKG_PACKAGE_DIR/control.tar.xz" \
1107 "$SUB_PKG_PACKAGE_DIR/data.tar.xz"
1108
1109 # Go back to main package:
1110 cd "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX"
59f0d218
FF
1111 done
1112
1113 # .. remove empty directories (NOTE: keep this last):
1114 find . -type d -empty -delete
7b1f1bd3
FF
1115 # Make sure user can read and write all files (problem with dpkg otherwise):
1116 chmod -R u+rw .
59f0d218
FF
1117}
1118
01e699d9 1119termux_step_post_massage() {
7b1f1bd3 1120 return
59f0d218
FF
1121}
1122
7b1f1bd3
FF
1123# Create data.tar.gz with files to package. Not to be overridden by package scripts.
1124termux_step_create_datatar() {
1125 # Create data tarball containing files to package:
1126 cd "$TERMUX_PKG_MASSAGEDIR"
46fe48b3
FF
1127
1128 local HARDLINKS="$(find . -type f -links +1)"
1129 if [ -n "$HARDLINKS" ]; then
1130 termux_error_exit "Package contains hard links: $HARDLINKS"
1131 fi
1132
7b1f1bd3
FF
1133 if [ -z "${TERMUX_PKG_METAPACKAGE+x}" ] && [ "$(find . -type f)" = "" ]; then
1134 termux_error_exit "No files in package"
f6a56287 1135 fi
2f122eed 1136 tar -cJf "$TERMUX_PKG_PACKAGEDIR/data.tar.xz" .
7b1f1bd3 1137}
f6a56287 1138
01e699d9 1139termux_step_create_debscripts() {
7b1f1bd3 1140 return
3a189d89
FF
1141}
1142
7b1f1bd3
FF
1143# Create the build deb file. Not to be overridden by package scripts.
1144termux_step_create_debfile() {
1145 # Get install size. This will be written as the "Installed-Size" deb field so is measured in 1024-byte blocks:
1146 local TERMUX_PKG_INSTALLSIZE
1147 TERMUX_PKG_INSTALLSIZE=$(du -sk . | cut -f 1)
1148
1149 # From here on TERMUX_ARCH is set to "all" if TERMUX_PKG_PLATFORM_INDEPENDENT is set by the package
1150 test -n "$TERMUX_PKG_PLATFORM_INDEPENDENT" && TERMUX_ARCH=all
1151
1152 mkdir -p DEBIAN
1153 cat > DEBIAN/control <<-HERE
1154 Package: $TERMUX_PKG_NAME
1155 Architecture: ${TERMUX_ARCH}
1156 Installed-Size: ${TERMUX_PKG_INSTALLSIZE}
1157 Maintainer: $TERMUX_PKG_MAINTAINER
1158 Version: $TERMUX_PKG_FULLVERSION
1159 Description: $TERMUX_PKG_DESCRIPTION
1160 Homepage: $TERMUX_PKG_HOMEPAGE
1161 HERE
9ec05091 1162 test ! -z "$TERMUX_PKG_BREAKS" && echo "Breaks: $TERMUX_PKG_BREAKS" >> DEBIAN/control
7b1f1bd3
FF
1163 test ! -z "$TERMUX_PKG_DEPENDS" && echo "Depends: $TERMUX_PKG_DEPENDS" >> DEBIAN/control
1164 test ! -z "$TERMUX_PKG_ESSENTIAL" && echo "Essential: yes" >> DEBIAN/control
1165 test ! -z "$TERMUX_PKG_CONFLICTS" && echo "Conflicts: $TERMUX_PKG_CONFLICTS" >> DEBIAN/control
5f217847 1166 test ! -z "$TERMUX_PKG_RECOMMENDS" && echo "Recommends: $TERMUX_PKG_RECOMMENDS" >> DEBIAN/control
7b1f1bd3
FF
1167 test ! -z "$TERMUX_PKG_REPLACES" && echo "Replaces: $TERMUX_PKG_REPLACES" >> DEBIAN/control
1168
1169 # Create DEBIAN/conffiles (see https://www.debian.org/doc/debian-policy/ap-pkg-conffiles.html):
1170 for f in $TERMUX_PKG_CONFFILES; do echo "$TERMUX_PREFIX/$f" >> DEBIAN/conffiles; done
1171
1172 # Allow packages to create arbitrary control files.
1173 # XXX: Should be done in a better way without a function?
1174 cd DEBIAN
1175 termux_step_create_debscripts
1176
1177 # Create control.tar.xz
2f122eed 1178 tar -cJf "$TERMUX_PKG_PACKAGEDIR/control.tar.xz" .
7b1f1bd3
FF
1179
1180 test ! -f "$TERMUX_COMMON_CACHEDIR/debian-binary" && echo "2.0" > "$TERMUX_COMMON_CACHEDIR/debian-binary"
1181 TERMUX_PKG_DEBFILE=$TERMUX_DEBDIR/${TERMUX_PKG_NAME}_${TERMUX_PKG_FULLVERSION}_${TERMUX_ARCH}.deb
1182 # Create the actual .deb file:
1183 ar cr "$TERMUX_PKG_DEBFILE" \
1184 "$TERMUX_COMMON_CACHEDIR/debian-binary" \
1185 "$TERMUX_PKG_PACKAGEDIR/control.tar.xz" \
1186 "$TERMUX_PKG_PACKAGEDIR/data.tar.xz"
1187}
59f0d218 1188
7b1f1bd3
FF
1189# Finish the build. Not to be overridden by package scripts.
1190termux_step_finish_build() {
1191 echo "termux - build of '$TERMUX_PKG_NAME' done"
1192 test -t 1 && printf "\033]0;%s - DONE\007" "$TERMUX_PKG_NAME"
1193 mkdir -p /data/data/.built-packages
1194 echo "$TERMUX_PKG_FULLVERSION" > "/data/data/.built-packages/$TERMUX_PKG_NAME"
9a104bda 1195 exit 0
7b1f1bd3 1196}
2497d957 1197
7b1f1bd3
FF
1198termux_step_handle_arguments "$@"
1199termux_step_setup_variables
1200termux_step_handle_buildarch
1201termux_step_start_build
59f0d218 1202termux_step_extract_package
508fa73c 1203cd "$TERMUX_PKG_SRCDIR"
59f0d218 1204termux_step_post_extract_package
7b1f1bd3
FF
1205termux_step_handle_hostbuild
1206termux_step_setup_toolchain
59f0d218 1207termux_step_patch_package
7106823d 1208termux_step_replace_guess_scripts
ca7699c1 1209cd "$TERMUX_PKG_SRCDIR"
59f0d218 1210termux_step_pre_configure
7b1f1bd3 1211cd "$TERMUX_PKG_BUILDDIR"
59f0d218 1212termux_step_configure
7b1f1bd3 1213cd "$TERMUX_PKG_BUILDDIR"
59f0d218 1214termux_step_post_configure
7b1f1bd3 1215cd "$TERMUX_PKG_BUILDDIR"
59f0d218 1216termux_step_make
7b1f1bd3 1217cd "$TERMUX_PKG_BUILDDIR"
59f0d218 1218termux_step_make_install
7b1f1bd3 1219cd "$TERMUX_PKG_BUILDDIR"
59f0d218 1220termux_step_post_make_install
7b1f1bd3 1221cd "$TERMUX_PKG_MASSAGEDIR"
59f0d218 1222termux_step_extract_into_massagedir
7b1f1bd3 1223cd "$TERMUX_PKG_MASSAGEDIR"
59f0d218 1224termux_step_massage
7b1f1bd3 1225cd "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX"
59f0d218 1226termux_step_post_massage
7b1f1bd3
FF
1227termux_step_create_datatar
1228termux_step_create_debfile
1229termux_step_finish_build