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