2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://packages.debian.org/apt
|
|
|
|
TERMUX_PKG_DESCRIPTION="Front-end for the dpkg package manager"
|
2019-01-20 22:39:59 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2018-01-22 09:54:00 +01:00
|
|
|
TERMUX_PKG_DEPENDS="libcurl, liblzma, dpkg, gpgv, libc++, termux-exec"
|
2019-01-30 00:40:57 +01:00
|
|
|
TERMUX_PKG_VERSION=1.4.9
|
2019-02-23 12:38:12 +01:00
|
|
|
TERMUX_PKG_REVISION=1
|
2019-01-30 00:40:57 +01:00
|
|
|
TERMUX_PKG_SHA256=d4d65e7c84da86f3e6dcc933bba46a08db429c9d933b667c864f5c0e880bac0d
|
2017-09-17 20:51:20 +02:00
|
|
|
TERMUX_PKG_SRCURL=http://ftp.debian.org/debian/pool/main/a/apt/apt_${TERMUX_PKG_VERSION}.tar.xz
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
2019-02-12 09:41:30 +01:00
|
|
|
-DPERL_EXECUTABLE=$(which perl)
|
2017-09-17 20:51:20 +02:00
|
|
|
-DCMAKE_INSTALL_FULL_LOCALSTATEDIR=$TERMUX_PREFIX
|
|
|
|
-DCOMMON_ARCH=$TERMUX_ARCH
|
|
|
|
-DDPKG_DATADIR=$TERMUX_PREFIX/share/dpkg
|
|
|
|
-DUSE_NLS=OFF
|
|
|
|
-DWITH_DOC=OFF
|
|
|
|
"
|
2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_ESSENTIAL=yes
|
2018-02-26 20:29:59 +01:00
|
|
|
TERMUX_PKG_CONFFILES="etc/apt/sources.list etc/apt/trusted.gpg"
|
2017-09-17 20:51:20 +02:00
|
|
|
TERMUX_PKG_CONFLICTS=apt-transport-https
|
|
|
|
TERMUX_PKG_REPLACES=apt-transport-https
|
|
|
|
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_post_make_install() {
|
2018-06-07 22:52:20 +02:00
|
|
|
printf "# The main termux repository:\ndeb https://termux.net stable main\n" > $TERMUX_PREFIX/etc/apt/sources.list
|
2017-11-16 23:37:17 +01:00
|
|
|
cp $TERMUX_PKG_BUILDER_DIR/trusted.gpg $TERMUX_PREFIX/etc/apt/
|
|
|
|
rm $TERMUX_PREFIX/include/apt-pkg -r
|
2018-08-03 12:42:07 +02:00
|
|
|
|
|
|
|
# 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
|
2015-06-13 01:03:31 +02:00
|
|
|
}
|