Add openssl 1.1.1l.

This commit is contained in:
fosslinux 2021-12-15 21:09:28 +11:00
parent a8cdecdfbd
commit bdd0227fdd
5 changed files with 31 additions and 0 deletions

View File

@ -104,3 +104,4 @@ f694bee56099b8d72c3843d97e27f2306aa9946741e34a27391f6f6f19c7bcd0 util-linux-2.1
166c48d2842519bc4f96333bff9e265f8cdda44d38e40594ef3f9bbb52890490 xz-5.0.5.tar.bz2
4ff941449631ace0d4d203e3483be9dbc9da454084111f97ea0a2114e19bf066 zlib-1.2.11.tar.xz
f0b19ff39c3c9a5898a219497ababbadab99d8178acc980155c7e1271089b5a0 libarchive-3.5.2.tar.xz
0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1 openssl-1.1.1l.tar.gz

View File

@ -153,6 +153,9 @@ class SysC(SysGeneral):
# libarchive-3.5.2
self.get_file("https://libarchive.org/downloads/libarchive-3.5.2.tar.xz")
# openssl-1.1.1l
self.get_file("https://www.openssl.org/source/openssl-1.1.1l.tar.gz")
# autoconf 2.71
self.get_file("https://mirrors.kernel.org/gnu/autoconf/autoconf-2.71.tar.xz")

View File

@ -0,0 +1,3 @@
d41f1a106a54c0fae76787faf998ac1b53db24f75221387ed3444eba420e0ced /usr/bin/openssl
3e45beb5d7b2c0a53f85c75a47f8357d177ebb03b0446464d24c01bfc2e617fb /usr/lib/musl/libcrypto.a
e84bc60e188ccd2b65e96422470f489fa31dbcebc45de1747a713fb284c07ba9 /usr/lib/musl/libssl.a

View File

@ -0,0 +1,22 @@
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
#
# SPDX-License-Identifier: GPL-3.0-or-later
src_prepare() {
default
# Remove a bunch of pregenerated files
# thanks for making these easy to find :)
find . -name build.info -exec grep 'GENERATE\[' {} \; | sed 's/.*\[//' | sed 's/\].*$//' | xargs -I{} find . -name {} -delete
}
src_configure() {
MACHINE=i386 ./config --prefix="${PREFIX}" \
--libdir="${PREFIX}/lib/musl" \
no-shared
}
src_compile() {
export SOURCE_DATE_EPOCH=1638831119
default
}

View File

@ -56,6 +56,8 @@ build perl-5.32.1
build libarchive-3.5.2
build openssl-1.1.1l
build automake-1.16.3
build autoconf-2.71