37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
17 lines
716 B
Bash
17 lines
716 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.4.6
|
|
TERMUX_PKG_SRCURL=https://www.torproject.org/dist/tor-$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=5f154c155803adf5c89e87cab53017b6908c5ebe50c65839e8cf4fbd2abe1fdc
|
|
TERMUX_PKG_DEPENDS="libevent, openssl, liblzma, zlib"
|
|
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"
|
|
}
|