mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-12 12:50:51 +00:00
31 lines
1.4 KiB
Bash
31 lines
1.4 KiB
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.8.21"
|
|
TERMUX_PKG_SRCURL=https://www.torproject.org/dist/tor-$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=eaf6f5b73091b95576945eade98816ddff7cd005befe4d94718a6f766b840903
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libevent, liblzma, openssl, resolv-conf, zlib"
|
|
TERMUX_PKG_BUILD_DEPENDS="libandroid-glob"
|
|
# We're not using '--enable-android' as it just defines 'USE_ANDROID', which
|
|
# makes Tor writes the log to Android's logcat instead of to stdout/stderr, not
|
|
# helpful in our case. Although it would be good to go through the source and
|
|
# ensure that in future there is not any other Android specific behaviour which
|
|
# affects security/anonymity.
|
|
# without --disable-seccomp, tor would automatically enable seccomp if libseccomp was
|
|
# previously installed in $TERMUX_PREFIX and fail with:
|
|
# src/lib/sandbox/sandbox.c:890:32: error: use of undeclared identifier 'PF_FILE'
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--disable-zstd
|
|
--disable-unittests
|
|
--disable-seccomp
|
|
"
|
|
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"
|
|
}
|