2017-02-09 09:22:55 +01:00
TERMUX_PKG_HOMEPAGE = https://www.privoxy.org
2017-07-07 03:02:23 +02:00
TERMUX_PKG_DESCRIPTION = "Non-caching web proxy with advanced filtering capabilities"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE = "GPL-2.0"
2020-12-20 14:16:34 +01:00
TERMUX_PKG_MAINTAINER = "@termux"
2020-12-07 23:41:12 +01:00
TERMUX_PKG_VERSION = 3.0.29
2017-02-09 09:22:55 +01:00
TERMUX_PKG_SRCURL = https://www.privoxy.org/sf-download-mirror/Sources/$TERMUX_PKG_VERSION %20%28stable%29/privoxy-$TERMUX_PKG_VERSION -stable-src.tar.gz
2020-12-07 23:41:12 +01:00
TERMUX_PKG_SHA256 = 25c6069efdaf577d47c257da63b03cd6d063fb790e19cc39603d82e5db72489d
2020-01-05 21:06:06 +01:00
# Termux-services adds the run scripts to TERMUX_PKG_CONFFILES. Those ones can not be copied in termux_step_post_massage so setup special variable for that
DEFAULT_CONFFILES = 'etc/privoxy/config etc/privoxy/match-all.action etc/privoxy/trust etc/privoxy/user.action etc/privoxy/user.filter etc/privoxy/default.action etc/privoxy/default.filter'
TERMUX_PKG_CONFFILES = $DEFAULT_CONFFILES
2019-01-03 02:03:37 +01:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS = "
ac_cv_lib_pcreposix_regcomp = no
--sysconfdir= $TERMUX_PREFIX /etc/privoxy
"
2019-04-24 20:33:38 +02:00
TERMUX_PKG_DEPENDS = "pcre, libpcreposix, zlib"
2019-08-12 17:28:41 +02:00
TERMUX_PKG_BUILD_IN_SRC = true
2020-01-05 21:06:06 +01:00
TERMUX_PKG_SERVICE_SCRIPT = ( "privoxy" 'if [ -f "$HOME/.config/privoxy/config" ]; then CONFIG="$HOME/.config/privoxy/config"; else CONFIG="$PREFIX/etc/privoxy/config"; fi\nexec privoxy --no-daemon $CONFIG 2>&1' )
2017-02-09 09:22:55 +01:00
termux_step_pre_configure( ) {
2019-08-08 14:25:54 +02:00
# Certain packages are not safe to build on device because their
# build.sh script deletes specific files in $TERMUX_PREFIX.
2019-08-12 17:28:41 +02:00
if $TERMUX_ON_DEVICE_BUILD ; then
2019-08-08 14:25:54 +02:00
termux_error_exit " Package ' $TERMUX_PKG_NAME ' is not safe for on-device builds. "
fi
2017-02-09 09:22:55 +01:00
autoheader
autoconf
# avoid 'aarch64-linux-android-strip': No such file or directory
ln -s " $TERMUX_STANDALONE_TOOLCHAIN /bin/ $STRIP " .
}
termux_step_post_make_install( ) {
# delete link created to avoid errors
rm -f " $TERMUX_PREFIX /sbin/ $STRIP "
}
termux_step_post_massage( ) {
# copy default config files
2020-01-05 21:06:06 +01:00
for f in $DEFAULT_CONFFILES ; do
2019-02-09 12:16:54 +01:00
cp " $TERMUX_PKG_SRCDIR / $( basename $f ) " " $TERMUX_PKG_MASSAGEDIR / $TERMUX_PREFIX / $f "
2017-02-09 09:22:55 +01:00
done
}