1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /usr/bin/env bash
# BuildCompatible: KitCreator
version="1.7.17"
url="http://tcltls.rkeene.org/uv/tcltls-${version}.tar.gz"
sha256='1f8c9b1dae25c0dedcdacbb2fa9352cd2d07cfc9d5eaa5fa48e7e266f6f4cef1'
configure_extra=('--enable-deterministic')
function buildSSLLibrary() {
local version url hash
local archive
version='2.6.4'
url="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${version}.tar.gz"
hash='638a20c2f9e99ee283a841cd787ab4d846d1880e180c4e96904fc327d419d11f'
archive="src/libressl-${version}.tar.gz"
echo " *** Building LibreSSL v${version}" >&2
if [ ! -e "${pkgdir}/${archive}" ]; then
"${_download}" "${url}" "${pkgdir}/${archive}" "${hash}" || return 1
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /usr/bin/env bash
# BuildCompatible: KitCreator
version="1.7.17"
url="http://tcltls.rkeene.org/uv/tcltls-${version}.tar.gz"
sha256='1f8c9b1dae25c0dedcdacbb2fa9352cd2d07cfc9d5eaa5fa48e7e266f6f4cef1'
configure_extra=('--enable-deterministic')
function buildSSLLibrary() {
local version url hash
local archive
version='2.9.0'
url="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${version}.tar.gz"
hash='eb5f298408b723f11a0ca0192c122ecb79b4855bfdf7eea183a6264296a13cf4'
archive="src/libressl-${version}.tar.gz"
echo " *** Building LibreSSL v${version}" >&2
if [ ! -e "${pkgdir}/${archive}" ]; then
"${_download}" "${url}" "${pkgdir}/${archive}" "${hash}" || return 1
|