diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2021-06-07 22:38:36 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-07 22:43:43 +0200 |
commit | 774fb4dedec606d6e9e7ecfbb7ce7a1f228e0ebe (patch) | |
tree | d94a633c2fa74c0f970f427873e508950d966bf0 /Ports/curl/package.sh | |
parent | 17c78be334f8ce153838df6d5562d3cc8cd4f77a (diff) | |
download | serenity-774fb4dedec606d6e9e7ecfbb7ce7a1f228e0ebe.zip |
Ports: Make `curl` detect our OpenSSL port
Without a proper prefix, the `configure` script will probably pick up
the host's OpenSSL library. This change makes sure the script always
looks at the library present in the Serenity build dir.
Diffstat (limited to 'Ports/curl/package.sh')
-rwxr-xr-x | Ports/curl/package.sh | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Ports/curl/package.sh b/Ports/curl/package.sh index 61104abde1..6522306b14 100755 --- a/Ports/curl/package.sh +++ b/Ports/curl/package.sh @@ -2,11 +2,7 @@ port=curl version=7.77.0 useconfigure=true -configopts="--disable-ntlm-wb --with-ssl" -files="https://curl.se/download/curl-${version}.tar.bz2 curl-${version}.tar.bz2 -https://curl.se/download/curl-${version}.tar.bz2.asc curl-${version}.tar.bz2.asc" - -depends="zlib openssl" -auth_type="sig" -auth_import_key="27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2" -auth_opts="curl-${version}.tar.bz2.asc curl-${version}.tar.bz2" +files="https://curl.se/download/curl-${version}.tar.bz2 curl-${version}.tar.bz2 6c0c28868cb82593859fc43b9c8fdb769314c855c05cf1b56b023acf855df8ea" +auth_type=sha256 +depends="openssl zlib" +configopts="--disable-ntlm-wb --with-openssl=${SERENITY_INSTALL_ROOT}/usr/local" |