TERMUX_PKG_HOMEPAGE=https://rclone.org/ TERMUX_PKG_DESCRIPTION="rsync for cloud storage" TERMUX_PKG_VERSION=1.43.1 TERMUX_PKG_SHA256=e21161bca6674dd4f4cd2f9ffb63ebfab54dcdb3ddbbbcd5000d4067019fdbaf TERMUX_PKG_SRCURL=https://github.com/ncw/rclone/releases/download/v${TERMUX_PKG_VERSION}/rclone-v${TERMUX_PKG_VERSION}.tar.gz termux_step_make_install() { cd $TERMUX_PKG_SRCDIR termux_setup_golang mkdir -p .gopath/src/github.com/ncw ln -sf "$PWD" .gopath/src/github.com/ncw/rclone export GOPATH="$PWD/.gopath" go build -v -o rclone # XXX: Fix read-only files which prevents removal of src dir. chmod u+w -R . cp rclone $TERMUX_PREFIX/bin/rclone mkdir -p $TERMUX_PREFIX/share/man/man1/ cp rclone.1 $TERMUX_PREFIX/share/man/man1/ }