45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=http://www.squid-cache.org
|
|
TERMUX_PKG_DESCRIPTION="Full-featured Web proxy cache server"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="Vishal Biswas @vishalbiswas"
|
|
TERMUX_PKG_VERSION=4.7
|
|
TERMUX_PKG_SHA256=a29cf65f77ab70a8b1cf47e6fe1d2975ec9d04d2446d54669a5afd2aee5e354e
|
|
TERMUX_PKG_SRCURL=http://squid.mirror.globo.tech/archive/4/squid-$TERMUX_PKG_VERSION.tar.xz
|
|
TERMUX_PKG_DEPENDS="libcrypt, openssl, libnettle, libltdl"
|
|
# disk-io requires msgctl and store-io requires disk-io
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
ac_cv_lib_sasl2_sasl_errstring=no
|
|
ac_cv_dbopen_libdb=no
|
|
squid_cv_gnu_atomics=yes
|
|
--disable-external-acl-helpers
|
|
--disable-strict-error-checking
|
|
--disable-disk-io
|
|
--disable-esi
|
|
--disable-storeio
|
|
--without-mit-krb5
|
|
--with-dl
|
|
--with-openssl
|
|
--disable-forw-via-db
|
|
--enable-auth
|
|
--without-libnettle
|
|
--enable-translation
|
|
--with-size-optimizations
|
|
--without-libxml2
|
|
--without-gnutls
|
|
--enable-delay-pools
|
|
--libexecdir=$TERMUX_PREFIX/libexec/squid
|
|
--sysconfdir=$TERMUX_PREFIX/etc/squid
|
|
--datarootdir=$TERMUX_PREFIX/share/squid
|
|
--mandir=$TERMUX_PREFIX/share/man
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS="$LDFLAGS -llog"
|
|
|
|
# needed for building cf_gen
|
|
export BUILDCXX=g++
|
|
# else it picks up our cross CXXFLAGS
|
|
export BUILDCXXFLAGS=' '
|
|
}
|
|
|