lldb: Add LLVM to description and formatting
[termux-packages] / packages / privoxy / build.sh
1 TERMUX_PKG_HOMEPAGE=https://www.privoxy.org
2 TERMUX_PKG_DESCRIPTION="Non-caching web proxy with advanced filtering capabilities"
3 TERMUX_PKG_VERSION=3.0.26
4 TERMUX_PKG_REVISION=1
5 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
6 TERMUX_PKG_SHA256=57e415b43ee5dfdca74685cc034053eaae962952fdabd086171551a86abf9cd8
7 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'
8 TERMUX_PKG_REVISION=1
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-dynamic-pcre --sysconfdir=$TERMUX_PREFIX/etc/privoxy"
10 TERMUX_PKG_BUILD_IN_SRC=yes
11 TERMUX_PKG_KEEP_SHARE_DOC=yes
12
13 termux_step_pre_configure() {
14 autoheader
15 autoconf
16
17 # avoid 'aarch64-linux-android-strip': No such file or directory
18 ln -s "$TERMUX_STANDALONE_TOOLCHAIN/bin/$STRIP" .
19 }
20
21 termux_step_post_make_install() {
22 # delete link created to avoid errors
23 rm -f "$TERMUX_PREFIX/sbin/$STRIP"
24 }
25
26 termux_step_post_massage() {
27 # copy default config files
28 for f in $TERMUX_PKG_CONFFILES; do
29 cp "$TERMUX_PKG_SRCDIR/$(basename $f)" "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/$f"
30 done
31 }