7e6a37fe9a
Reorganize patches for better understanding and ensure they are applied in expected order. Another changes: * gnupg is now in recommends (used by apt-key). * x11-repo is now in suggests. * TCSAFLUSH patch is dropped because it is covered by one of NDK patches where TCSAFLUSH value is replaced with TCSANOW.
68 lines
2.2 KiB
Bash
68 lines
2.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://packages.debian.org/apt
|
|
TERMUX_PKG_DESCRIPTION="Front-end for the dpkg package manager"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_VERSION=1.4.9
|
|
TERMUX_PKG_REVISION=20
|
|
TERMUX_PKG_SRCURL=http://ftp.debian.org/debian/pool/main/a/apt/apt_${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=d4d65e7c84da86f3e6dcc933bba46a08db429c9d933b667c864f5c0e880bac0d
|
|
# apt-key requires utilities from coreutils, findutils, gpgv, grep, sed.
|
|
TERMUX_PKG_DEPENDS="coreutils, dpkg, findutils, gpgv, grep, libc++, libcurl, liblzma, sed, termux-licenses, zlib"
|
|
TERMUX_PKG_CONFLICTS="apt-transport-https"
|
|
TERMUX_PKG_REPLACES="apt-transport-https"
|
|
TERMUX_PKG_RECOMMENDS="game-repo, gnupg, science-repo"
|
|
TERMUX_PKG_SUGGESTS="unstable-repo, x11-repo"
|
|
TERMUX_PKG_ESSENTIAL=true
|
|
|
|
TERMUX_PKG_CONFFILES="
|
|
etc/apt/sources.list
|
|
etc/apt/trusted.gpg
|
|
"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DPERL_EXECUTABLE=$(which perl)
|
|
-DCMAKE_INSTALL_FULL_LOCALSTATEDIR=$TERMUX_PREFIX
|
|
-DCOMMON_ARCH=$TERMUX_ARCH
|
|
-DDPKG_DATADIR=$TERMUX_PREFIX/share/dpkg
|
|
-DUSE_NLS=OFF
|
|
-DWITH_DOC=OFF
|
|
"
|
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
bin/apt-cdrom
|
|
bin/apt-extracttemplates
|
|
bin/apt-sortpkgs
|
|
etc/apt/apt.conf.d
|
|
lib/apt/apt-helper
|
|
lib/apt/methods/bzip2
|
|
lib/apt/methods/cdrom
|
|
lib/apt/methods/mirror
|
|
lib/apt/methods/rred
|
|
lib/apt/planners/
|
|
lib/apt/solvers/
|
|
lib/dpkg/
|
|
lib/libapt-inst.so
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
# Certain packages are not safe to build on device because their
|
|
# build.sh script deletes specific files in $TERMUX_PREFIX.
|
|
if $TERMUX_ON_DEVICE_BUILD; then
|
|
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds."
|
|
fi
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
printf "# The main termux repository:\ndeb https://termux.org/packages/ stable main\n" > $TERMUX_PREFIX/etc/apt/sources.list
|
|
cp $TERMUX_PKG_BUILDER_DIR/trusted.gpg $TERMUX_PREFIX/etc/apt/
|
|
rm $TERMUX_PREFIX/include/apt-pkg -r
|
|
|
|
# apt-transport-tor
|
|
ln -sfr $TERMUX_PREFIX/lib/apt/methods/http $TERMUX_PREFIX/lib/apt/methods/tor
|
|
ln -sfr $TERMUX_PREFIX/lib/apt/methods/http $TERMUX_PREFIX/lib/apt/methods/tor+http
|
|
ln -sfr $TERMUX_PREFIX/lib/apt/methods/https $TERMUX_PREFIX/lib/apt/methods/tor+https
|
|
|
|
# man pages
|
|
mkdir -p $TERMUX_PREFIX/share/man/
|
|
cp -Rf $TERMUX_PKG_BUILDER_DIR/man/* $TERMUX_PREFIX/share/man/
|
|
}
|