mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 13:07:47 +00:00
Ports/openssl: Reformat package.sh according to our current style
This commit is contained in:
parent
b38edc9d43
commit
1166f5a758
1 changed files with 16 additions and 5 deletions
|
@ -1,12 +1,23 @@
|
||||||
#!/usr/bin/env -S bash ../.port_include.sh
|
#!/usr/bin/env -S bash ../.port_include.sh
|
||||||
port=openssl
|
port='openssl'
|
||||||
version='3.0.9'
|
version='3.0.9'
|
||||||
useconfigure=true
|
useconfigure='true'
|
||||||
configscript=Configure
|
configscript='Configure'
|
||||||
files="https://www.openssl.org/source/openssl-${version}.tar.gz openssl-${version}.tar.gz eb1ab04781474360f77c318ab89d8c5a03abc38e63d65a603cabbf1b00a1dc90"
|
files="https://www.openssl.org/source/openssl-${version}.tar.gz openssl-${version}.tar.gz eb1ab04781474360f77c318ab89d8c5a03abc38e63d65a603cabbf1b00a1dc90"
|
||||||
|
|
||||||
depends=("zlib")
|
depends=(
|
||||||
configopts=("--prefix=/usr/local" "-DOPENSSL_SYS_SERENITY=1" "-DOPENSSL_USE_IPV6=0" "zlib" "threads" "no-tests" "no-asm" "serenity-generic")
|
'zlib'
|
||||||
|
)
|
||||||
|
configopts=(
|
||||||
|
'--prefix=/usr/local'
|
||||||
|
'-DOPENSSL_SYS_SERENITY=1'
|
||||||
|
'-DOPENSSL_USE_IPV6=0'
|
||||||
|
'no-asm'
|
||||||
|
'no-tests'
|
||||||
|
'serenity-generic'
|
||||||
|
'threads'
|
||||||
|
'zlib'
|
||||||
|
)
|
||||||
|
|
||||||
configure() {
|
configure() {
|
||||||
export LDFLAGS="-L${SERENITY_INSTALL_ROOT}/usr/local/lib"
|
export LDFLAGS="-L${SERENITY_INSTALL_ROOT}/usr/local/lib"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue