mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-08 16:55:01 +00:00
This patch refreshes the openssl port and makes it build the utilities
in apps/, e.g. the openssl utility.
Now you can do this from Serenity:
$ openssl s_client -connect example.org:443
...
GET / HTTP/1.1
Host: example.org
<HTTP response here>
The download URL was bit-rotten and needed a fix.
21 lines
736 B
Bash
Executable File
21 lines
736 B
Bash
Executable File
#!/bin/bash ../.port_include.sh
|
|
port=openssl
|
|
branch='1.0.2'
|
|
version="${branch}t"
|
|
useconfigure=true
|
|
configscript=Configure
|
|
files="https://ftp.openssl.org/source/old/${branch}/openssl-${version}.tar.gz openssl-${version}.tar.gz
|
|
https://ftp.openssl.org/source/old/${branch}/openssl-${version}.tar.gz.asc openssl-${version}.tar.gz.asc"
|
|
auth_type="sig"
|
|
auth_import_key="8657ABB260F056B1E5190839D9C4D26D0E604491"
|
|
auth_opts="openssl-${version}.tar.gz.asc openssl-${version}.tar.gz"
|
|
|
|
depends="zlib"
|
|
usr_local=$SERENITY_ROOT/Root/usr/local/
|
|
configopts="--prefix=$usr_local -DOPENSSL_SYS_SERENITY=1 --openssldir=$usr_local/ssl BSD-x86 zlib no-tests no-threads no-asm"
|
|
|
|
configure() {
|
|
run rm -rf ./test/
|
|
run ./"$configscript" $configopts
|
|
}
|