termux-packages/packages/privoxy/build.sh

36 lines
1.3 KiB
Bash
Raw Normal View History

TERMUX_PKG_HOMEPAGE=https://www.privoxy.org
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"
2019-01-03 02:03:37 +01:00
TERMUX_PKG_VERSION=3.0.28
2019-04-14 14:51:46 +02:00
TERMUX_PKG_REVISION=1
2019-01-03 02:03:37 +01:00
TERMUX_PKG_SHA256=b5d78cc036aaadb3b7cf860e9d598d7332af468926a26e2d56167f1cb6f2824a
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
TERMUX_PKG_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'
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-14 14:51:46 +02:00
TERMUX_PKG_DEPENDS="pcre, zlib"
TERMUX_PKG_BUILD_IN_SRC=yes
TERMUX_PKG_KEEP_SHARE_DOC=yes
termux_step_pre_configure() {
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
for f in $TERMUX_PKG_CONFFILES; do
2019-02-09 12:16:54 +01:00
cp "$TERMUX_PKG_SRCDIR/$(basename $f)" "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/$f"
done
}