smlinux/net/privoxy/privoxy.SMBuild
PktSurf d18addf386 Replaced upper case variable with lower case in net/cgit
Improved code to install dump1090 binary in net/dump1090 and hostname symlinks in net/hostname
Removed code that manually discards static archives in net/php
Miscellaneous SHA512 checksum updates and minor fixes in several net pkg build files
2022-10-10 22:54:00 +05:30

56 lines
1.5 KiB
Text
Executable file

app=privoxy
version=3.0.33
build=1sml
homepage="https://www.privoxy.org/"
download="https://www.privoxy.org/sf-download-mirror/Sources/$version%20%28stable%29/privoxy-$version-stable-src.tar.gz"
desc="Web proxy with advanced filtering capabilities"
requires="zlib pcre"
build() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
# Put the docs where we tell them to go:
sed -i "/^DOC_DEST/s/= .*/= @docdir@/" GNUmakefile.in
# The Makefile checks if certain config files exist, and if so, adds a
# .new suffix. Turn this behavior off. We will do it below.
sed -i "s/\[ -s \"\$(CONF_DEST)\/\$\$i\" \]/false/" GNUmakefile.in
autoreconf -vif
./configure \
--prefix="" \
--sbindir=/bin \
--sysconfdir=/etc/"$app" \
--localstatedir=/var \
--with-docbook=no \
--with-user=nobody \
--with-group=nogroup \
--enable-no-gifs \
--enable-compression \
--enable-large-file-support
make
make install DESTDIR=$pkg
(
cd $pkg/etc/privoxy
for f in config match-all.action regression-tests.action trust user.action user.filter ;
do mv $f $f.new
done
)
mv $pkg/share/doc/LICENSE $pkgdocs/
install -Dm 755 $srcdir/rc.privoxy $pkg/etc/rc.d/rc.privoxy
mkfinalpkg
}
sha512sums="
081eab421edad8c2d24c82e2e36a9dd63376844c22ffdae5f41aff187d6c279ba1bf4c1de90815b49f9bea71f68941c201189278c185c235a14949efeaa1dd99 privoxy-3.0.33.tar.lz
"