81 lines
2.9 KiB
Bash
81 lines
2.9 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=2.1.13
|
|
TERMUX_PKG_SRCURL=http://deb.debian.org/debian/pool/main/a/apt/apt_${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=ed56790183618df99d60d4a37729a7abca7e780607ad91f5d9f2a4ee84f7c9a1
|
|
# apt-key requires utilities from coreutils, findutils, gpgv, grep, sed.
|
|
TERMUX_PKG_DEPENDS="coreutils, dpkg, findutils, gpgv, grep, libandroid-glob, libbz2, libc++, libcurl, libgnutls, liblz4, liblzma, sed, termux-licenses, zlib"
|
|
TERMUX_PKG_CONFLICTS="apt-transport-https, libapt-pkg"
|
|
TERMUX_PKG_REPLACES="apt-transport-https, libapt-pkg"
|
|
TERMUX_PKG_RECOMMENDS="game-repo, science-repo"
|
|
TERMUX_PKG_SUGGESTS="gnupg, 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=$(command -v perl)
|
|
-DCMAKE_INSTALL_FULL_LOCALSTATEDIR=$TERMUX_PREFIX
|
|
-DCACHE_DIR=${TERMUX_CACHE_DIR}/apt
|
|
-DCOMMON_ARCH=$TERMUX_ARCH
|
|
-DDPKG_DATADIR=$TERMUX_PREFIX/share/dpkg
|
|
-DUSE_NLS=OFF
|
|
-DWITH_DOC=OFF
|
|
"
|
|
|
|
# ubuntu uses instead $PREFIX/lib instead of $PREFIX/libexec to
|
|
# "Work around bug in GNUInstallDirs" (from apt 1.4.8 CMakeLists.txt).
|
|
# Archlinux uses $PREFIX/libexec though, so let's force libexec->lib to
|
|
# get same build result on ubuntu and archlinux.
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+="-DCMAKE_INSTALL_LIBEXECDIR=lib"
|
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
bin/apt-cdrom
|
|
bin/apt-extracttemplates
|
|
bin/apt-sortpkgs
|
|
etc/apt/apt.conf.d
|
|
lib/apt/methods/cdrom
|
|
lib/apt/methods/mirror
|
|
lib/apt/methods/rred
|
|
lib/apt/planners/
|
|
lib/apt/solvers/
|
|
lib/dpkg/
|
|
"
|
|
|
|
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
|
|
|
|
# Prefix verification patch should be applied only for the
|
|
# builds with original prefix.
|
|
if [ "$TERMUX_PREFIX" = "/data/data/com.termux/files/usr" ]; then
|
|
patch -p1 -i $TERMUX_PKG_BUILDER_DIR/0012-verify-prefix.patch.txt
|
|
fi
|
|
|
|
# Fix i686 builds.
|
|
CXXFLAGS+=" -Wno-c++11-narrowing"
|
|
# Fix glob() on Android 7.
|
|
LDFLAGS+=" -Wl,--no-as-needed -landroid-glob"
|
|
}
|
|
|
|
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/
|
|
|
|
# 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/
|
|
}
|