-
-
Notifications
You must be signed in to change notification settings - Fork 3k
For maintainers
-
./build-all.sh
: Build all packages in the correct order (using./scripts/buildorder.py
). -
./clean.sh
: Cleaning build environment. -
./scripts/check-built-packages.py
: Compare local (git) and remote (apt) package versions. -
./scripts/check-pie.sh
: Verify that all binaries are using PIE, which is required for Android 5+. -
./scripts/check-versions.sh
: Check for package updates. -
./scripts/ldd
: Print list of required shared libraries for given binary. -
./scripts/lint-packages.sh
: Do basic checks for problems inbuild.sh
scripts. -
./scripts/list-packages.sh
: List all packages with a one-line summary. -
./scripts/generate-bootstraps.sh
: Generate bootstrap archive for Termux app from published apt repo. -
./scripts/build-bootstraps.sh
: Build bootstrap archive for Termux app from local package sources.
The Termux bootstrap zips contain the minimal environment/rootfs with basic packages required to run the termux-app
for Termux context.
- Bootstraps are generated weekly/manual with
termux-packages/scripts/generate-bootstraps.sh
bytermux-packages/bootstrap_archives
wokflow and uploaded totermux-packages
releases. CheckGenerate bootstrap archives
section below for info on how bootstrap zips are generated. - During
termux-app
build, theapp/build.gradle
downloads the bootstrap zips fromtermux-packages
releases intoapp/src/main/cpp/
and verifies the checksum. - The zips are added into the app APK as native libraries at
lib/<arch>/libtermux-bootstrap.so
inside the APK byapp/src/main/cpp/termux-bootstrap-zip.S
. To view the bootstrap zip, rename thelibtermux-bootstrap.so
file tolibtermux-bootstrap.zip
and open it with a zip file viewer and bootstrap will exist with the name.rodata
. - When app is installed, android extracts the
libtermux-bootstrap.so
file for the device's architecture to<apk_install_path>/lib/<arch>
due topackagingOptions.jniLibs.useLegacyPackaging=true
inapp/build.gradle
(previouslyextractNativeLibs=true
inapp/src/main/AndroidManifest.xml
). The exact installation path will depend on device depending onPackageManagerService
(f56f1c5c
) and can be checked withpm path com.termux
withadb
orroot
ordirname "$TERMUX_APP__APK_FILE_PATH"
intermux-app
>= v0.119.0
. If APK build is architecture specific like github builds, thenlibtermux-bootstrap.so
of only a single architecture will be added to APK to save space. - When termux app is run and if
$PREFIX
is missing or "empty", thenTermuxInstaller.setupBootstrapIfNeeded()
will callloadZipBytes()
to load thelibtermux-bootstrap.so
library for the device's architecture with a call toSystem.loadLibrary()
and get the zip with a call to the nativegetZip()
function and then extract the bootstrap zip to$PREFIX
. - The current size of each bootstrap zip of an architecture is
~25MB
. So if an APK is built for all architectures (universal), then bootstrap zips of all4
architectures will use100MB
. If APK is built for a single architecture, then the single bootstrap zip will use25MB
. The app code and resources will consume additional space. Since android will extractlibtermux-bootstrap.so
of the device's architecture to APK installation path, that will consume25MB
additional space on the device. Then due to bootstrap zip extraction to$PREFIX
, additional uncompressed space of~70-80MB
will be consumed as well depending on filesystem and its block size. So total disk usage for universal APKs is100+25+80=205MB
and for single architecture APKs is25+25+80=130MB
. The github builds provide both universal and architecture specific APKs, but F-Droid builds only provide universal APKs, since F-Droid does not support split APKs.
The generate-bootstraps.sh
is a script to generate bootstrap archives for the termux-app
from debs published in an apt repo. Run generate-bootstrap.sh --help
for more info.
To check the list of default packages that are added to the bootstrap, check calls to pull_package
function in generate-bootstraps.sh
script. Additional packages can be added by passing them with the -a
and --add
command arguments.
Built archives will be available in the current working directory.
Please note that an apt
repository must have been deployed on the web server in order to be able to generate bootstrap archives, which has debs built for the custom TERMUX_APP_PACKAGE
in scripts/properties.sh
. A custom TERMUX_APP_PACKAGE
cannot be used with Termux app official repos/mirrors, since they publish packages for com.termux
package. If you do not want to publish custom repo, use build-bootstraps.sh
instead.
Default script configuration is
TERMUX_APP_PACKAGE: com.termux
TERMUX_PACKAGE_MANAGER: apt
TERMUX_ARCHITECTURES: aarch64 arm i686 x86_64
REPO_BASE_URL: https://packages-cf.termux.dev/apt/termux-main
so if you want to generate bootstraps for custom repository, consider using following command line options:
-
--architectures
- Comma separated list of architectures for which bootstraps should be generated. -
--repository
- URL of your APT repository. Offline bootstrap generation is not supported.
The build-bootstraps.sh
is a script to build bootstrap archives for the termux-app
from local package sources instead of debs published in apt repo like done by generate-bootstrap.sh
. It allows bootstrap archives to be easily built for (forked) termux apps without having to publish an apt repo first. Run build-bootstrap.sh --help
for more info.
To check the list of default packages that are added to the bootstrap, check packages added to the $PACKAGES
bash
array in build-bootstraps.sh
script. Additional packages can be added by passing them with the -a
and --add
command arguments.
The package name/prefix that the bootstrap is built for is defined by TERMUX_APP_PACKAGE
in scripts/properties.sh
. It defaults to com.termux
. If package name is changed, make sure to run ./scripts/run-docker.sh ./clean.sh
or pass -f
to force rebuild of packages.
Build default bootstrap archives for all supported archs:
./scripts/run-docker.sh ./scripts/build-bootstraps.sh &> build.log
Build default bootstrap archive for aarch64 arch only:
./scripts/run-docker.sh ./scripts/build-bootstraps.sh --architectures aarch64 &> build.log
Build bootstrap archive with additionall openssh package for aarch64 arch only:
./scripts/run-docker.sh ./scripts/build-bootstraps.sh --architectures aarch64 --add openssh &> build.log
The termux-app/app/build.gradle
downloads the bootstrap archives published by Generate bootstrap archives
to termux-packages
releases and verifies the checksums when building the app.
To build termux-app
with the custom bootstrap build, run Build
-> Clean Project
in Android Studio, then replace/place the built bootstrap zips
in termux-app/app/src/main/cpp
. Add a return
statement in first line of downloadBootstrap()
function in termux-app/app/build.gradle
to prevent function from running so that the custom bootstrap-*.zip
files don't get replaced with downloaded ones and then sync project with gradle files and build the apk.