diff --git a/SHA256SUMS.sources b/SHA256SUMS.sources index 934693b..4b4970b 100644 --- a/SHA256SUMS.sources +++ b/SHA256SUMS.sources @@ -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 diff --git a/sysc.py b/sysc.py index f3bc491..68af54b 100755 --- a/sysc.py +++ b/sysc.py @@ -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") diff --git a/sysc/openssl-1.1.1l/checksums b/sysc/openssl-1.1.1l/checksums new file mode 100644 index 0000000..d4bc1fd --- /dev/null +++ b/sysc/openssl-1.1.1l/checksums @@ -0,0 +1,3 @@ +d41f1a106a54c0fae76787faf998ac1b53db24f75221387ed3444eba420e0ced /usr/bin/openssl +3e45beb5d7b2c0a53f85c75a47f8357d177ebb03b0446464d24c01bfc2e617fb /usr/lib/musl/libcrypto.a +e84bc60e188ccd2b65e96422470f489fa31dbcebc45de1747a713fb284c07ba9 /usr/lib/musl/libssl.a diff --git a/sysc/openssl-1.1.1l/openssl-1.1.1l.sh b/sysc/openssl-1.1.1l/openssl-1.1.1l.sh new file mode 100755 index 0000000..f1534c6 --- /dev/null +++ b/sysc/openssl-1.1.1l/openssl-1.1.1l.sh @@ -0,0 +1,22 @@ +# SPDX-FileCopyrightText: 2021 fosslinux +# +# 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 +} diff --git a/sysc/run2.sh b/sysc/run2.sh index acac5c7..669b087 100755 --- a/sysc/run2.sh +++ b/sysc/run2.sh @@ -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