mirror of
https://codeberg.org/kiss-community/repo
synced 2025-01-08 10:40:17 -07:00
openssl: 1.1.1k (testing)
This commit is contained in:
parent
00ceb6e987
commit
2e678fda6f
13
testing/openssl/build
Executable file
13
testing/openssl/build
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
./Configure \
|
||||
--prefix=/usr \
|
||||
--openssldir=/etc/ssl \
|
||||
--libdir=lib \
|
||||
shared linux-x86_64
|
||||
|
||||
make depend
|
||||
make
|
||||
make DESTDIR="$1" install_sw install_ssldirs
|
||||
|
||||
cp -f update-certdata.sh "$1/etc/ssl"
|
2
testing/openssl/checksums
Normal file
2
testing/openssl/checksums
Normal file
@ -0,0 +1,2 @@
|
||||
892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5
|
||||
d4bfcd9ee16eff65bdf6de1e0a3ccac667fdf52d98d0eda5c3e3f638aad13b89
|
12
testing/openssl/files/update-certdata.sh
Executable file
12
testing/openssl/files/update-certdata.sh
Executable file
@ -0,0 +1,12 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
[ -w /etc/ssl ] || {
|
||||
printf '%s\n' "${0##*/}: root required to update cert." >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd /etc/ssl && {
|
||||
curl -LO https://curl.haxx.se/ca/cacert.pem
|
||||
mv -f cacert.pem cert.pem
|
||||
printf '%s\n' "${0##*/}: updated cert.pem"
|
||||
}
|
3
testing/openssl/post-install
Executable file
3
testing/openssl/post-install
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
/etc/ssl/update-certdata.sh
|
2
testing/openssl/sources
Normal file
2
testing/openssl/sources
Normal file
@ -0,0 +1,2 @@
|
||||
https://www.openssl.org/source/openssl-1.1.1k.tar.gz
|
||||
files/update-certdata.sh
|
1
testing/openssl/version
Normal file
1
testing/openssl/version
Normal file
@ -0,0 +1 @@
|
||||
1.1.1k 1
|
Loading…
Reference in New Issue
Block a user