2015-08-12 05:52:41 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=http://curl.haxx.se/docs/caextract.html
|
|
|
|
TERMUX_PKG_DESCRIPTION="Common CA certificates"
|
2016-12-01 00:29:14 +01:00
|
|
|
TERMUX_PKG_VERSION=20161128
|
2015-12-02 02:32:08 +01:00
|
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=yes
|
2015-08-12 05:52:41 +02:00
|
|
|
|
|
|
|
termux_step_make_install () {
|
2016-08-24 12:34:43 +02:00
|
|
|
local CERTDIR=$TERMUX_PREFIX/etc/tls
|
|
|
|
local CERTFILE=$CERTDIR/cert.pem
|
2016-12-01 00:29:14 +01:00
|
|
|
# If the checksum has changed, it may be time to update the package version.
|
|
|
|
local CERTFILE_SHA256=7458091b8d536e216823ab0f749f7d51714a8c4d47d25ca610d41ef4b45483d5
|
2016-08-24 12:34:43 +02:00
|
|
|
|
|
|
|
mkdir -p $CERTDIR
|
|
|
|
|
|
|
|
termux_download https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt \
|
|
|
|
$CERTFILE \
|
|
|
|
$CERTFILE_SHA256
|
2015-08-12 05:52:41 +02:00
|
|
|
}
|