Browse Source
Move the CA certs from libcurl to separate ca-certificates package which both openssl and gnutls depends on. For a smooth upgrade without packages clashing with the same file, rename etc/ssl to etc/tls. Also update gnutls to latest version and give configure argument to use common certificate file.android-5
Fredrik Fornwall
10 years ago
5 changed files with 27 additions and 15 deletions
@ -0,0 +1,17 @@ |
|||
TERMUX_PKG_HOMEPAGE=http://curl.haxx.se/docs/caextract.html |
|||
TERMUX_PKG_DESCRIPTION="Common CA certificates" |
|||
TERMUX_PKG_VERSION=20150427 |
|||
TERMUX_PKG_BUILD_REVISION=1 |
|||
|
|||
termux_step_make_install () { |
|||
CERTFILE=$TERMUX_PKG_TMPDIR/cert.pem |
|||
curl -o $CERTFILE https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt |
|||
if grep -q 'SHA1: ed3c0bbfb7912bcc00cd2033b0cb85c98d10559c' $CERTFILE; then |
|||
CERT_DIR=$TERMUX_PREFIX/etc/tls |
|||
mkdir -p $CERT_DIR |
|||
mv $CERTFILE $CERT_DIR/cert.pem |
|||
else |
|||
echo "Have https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt been updated?" |
|||
exit 1 |
|||
fi |
|||
} |
@ -1,9 +1,10 @@ |
|||
TERMUX_PKG_HOMEPAGE=http://www.gnutls.org/ |
|||
TERMUX_PKG_DESCRIPTION="Secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them" |
|||
TERMUX_PKG_DEPENDS="libgmp, libnettle" |
|||
TERMUX_PKG_DEPENDS="libgmp, libnettle, ca-certificates" |
|||
_TERMUX_PKG_MAJOR_VERSION=3.4 |
|||
TERMUX_PKG_VERSION=${_TERMUX_PKG_MAJOR_VERSION}.3 |
|||
TERMUX_PKG_VERSION=${_TERMUX_PKG_MAJOR_VERSION}.4.1 |
|||
TERMUX_PKG_BUILD_REVISION=1 |
|||
TERMUX_PKG_SRCURL=ftp://ftp.gnutls.org/gcrypt/gnutls/v${_TERMUX_PKG_MAJOR_VERSION}/gnutls-${TERMUX_PKG_VERSION}.tar.xz |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-hardware-acceleration --disable-cxx --disable-openssl-compatibility --with-included-libtasn1 --without-p11-kit" |
|||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-hardware-acceleration --disable-cxx --disable-openssl-compatibility --with-included-libtasn1 --without-p11-kit --with-default-trust-store-file=$TERMUX_PREFIX/etc/tls/cert.pem" |
|||
|
|||
CFLAGS+=" -std=c99" |
|||
|
Loading…
Reference in new issue