termux-packages/packages/tor/build.sh
vhqtvn d220576dfb
fix some non-building packages (#7058)
* fix ccache building failed due to sse

* gogs require go-bindata to be built

* mariadb's cmake need to change END to ENDIF

* fix neovim building due to gitsubmodule usage

* php-redis: add blacklist from php dep

* rlwrap update to new version

* stfl disable perl and ruby

* util-linux comment out shm & sem support

* weechat disable ruby

* tor building need glob
2021-06-27 17:33:45 +03:00

18 lines
755 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.torproject.org
TERMUX_PKG_DESCRIPTION="The Onion Router anonymizing overlay network"
TERMUX_PKG_LICENSE="BSD 3-Clause"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.4.5.7
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL=https://www.torproject.org/dist/tor-$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=447fcaaa133e2ef22427e98098a60a9c495edf9ff3e0dd13f484b9ad0185f074
TERMUX_PKG_DEPENDS="libevent, openssl, liblzma, zlib, libandroid-glob"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-zstd --disable-unittests"
TERMUX_PKG_CONFFILES="etc/tor/torrc"
TERMUX_PKG_SERVICE_SCRIPT=("tor" 'exec tor 2>&1')
termux_step_post_make_install() {
# use default config
mv "$TERMUX_PREFIX/etc/tor/torrc.sample" "$TERMUX_PREFIX/etc/tor/torrc"
}