add ssh to the apt transports (#851)
authorMarkus Wagner <mawatech@users.noreply.github.com>
Fri, 17 Mar 2017 22:22:28 +0000 (23:22 +0100)
committerFredrik Fornwall <fredrik@fornwall.net>
Fri, 17 Mar 2017 22:22:28 +0000 (23:22 +0100)
packages/apt/build.sh

index 51f11b7..ef4fbfa 100644 (file)
@@ -6,7 +6,7 @@ TERMUX_PKG_DEPENDS="liblzma, dpkg, gpgv"
 # Updating to apt 1.4 will also get rid of the build hacks used as apt has transitioned
 # to a clean cmake build system.
 TERMUX_PKG_VERSION=1.2.12
-TERMUX_PKG_REVISION=1
+TERMUX_PKG_REVISION=2
 # TERMUX_PKG_SRCURL=http://ftp.debian.org/debian/pool/main/a/apt/apt_${TERMUX_PKG_VERSION}.tar.xz
 TERMUX_PKG_SRCURL=https://launchpad.net/ubuntu/+archive/primary/+files/apt_${TERMUX_PKG_VERSION}.tar.xz
 TERMUX_PKG_SHA256=e820d27cba73476df4abcff27dadd1b5847474bfe85f7e9202a9a07526973ea6
@@ -37,8 +37,9 @@ termux_step_make_install () {
        mkdir -p $TERMUX_PREFIX/lib/apt/methods $TERMUX_PREFIX/share/man/man{5,8}
        cp $TERMUX_PKG_BUILDDIR/build/docs/apt{,-cache,-get}.8 $TERMUX_PREFIX/share/man/man8/
        cp $TERMUX_PKG_BUILDDIR/build/docs/{apt.conf,sources.list}.5 $TERMUX_PREFIX/share/man/man5/
-       cp $TERMUX_PKG_BUILDDIR/build/bin/methods/{copy,file,gpgv,gzip,http,https,store} $TERMUX_PREFIX/lib/apt/methods
+       cp $TERMUX_PKG_BUILDDIR/build/bin/methods/{copy,file,gpgv,gzip,http,https,rsh,store} $TERMUX_PREFIX/lib/apt/methods
        (cd $TERMUX_PREFIX/lib/apt/methods; ln -f -s gzip xz)
+       (cd $TERMUX_PREFIX/lib/apt/methods; ln -f -s rsh ssh)
 
        mkdir -p $TERMUX_PREFIX/etc/apt
        printf "# The main termux repository:\ndeb [arch=all,${TERMUX_ARCH}] http://termux.net stable main\n" > $TERMUX_PREFIX/etc/apt/sources.list