mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:07:44 +00:00
Ports: Update formatting to be consistent with other ports
This commit updates the formatting for all ports to be updated in this PR in one go, to keep those changes centralized.
This commit is contained in:
parent
349996f7f2
commit
50758181a3
72 changed files with 595 additions and 399 deletions
|
@ -5,11 +5,21 @@ files=(
|
|||
"https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz#b17a598fbf58729ef13b577465eb93b2d484df1201518b708b5044ff623bf46d"
|
||||
)
|
||||
useconfigure='true'
|
||||
configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--with-lib=${SERENITY_INSTALL_ROOT}/usr/local" "CFLAGS=-DNO_IPV6" "LDFLAGS=-L${SERENITY_INSTALL_ROOT}/usr/local/lib")
|
||||
depends=("zlib" "curl")
|
||||
configopts=(
|
||||
"--target=${SERENITY_ARCH}-pc-serenity"
|
||||
"--with-lib=${SERENITY_INSTALL_ROOT}/usr/local"
|
||||
'CFLAGS=-DNO_IPV6'
|
||||
"LDFLAGS=-L${SERENITY_INSTALL_ROOT}/usr/local/lib"
|
||||
)
|
||||
depends=(
|
||||
'curl'
|
||||
'zlib'
|
||||
)
|
||||
|
||||
build() {
|
||||
run make "${makeopts[@]}" CURL_LDFLAGS="-lcurl -lssl -lcrypto -lz"
|
||||
run make \
|
||||
"${makeopts[@]}" \
|
||||
CURL_LDFLAGS='-lcurl -lssl -lcrypto -lz'
|
||||
run make strip
|
||||
}
|
||||
|
||||
|
@ -26,11 +36,11 @@ post_install() {
|
|||
EOF
|
||||
}
|
||||
|
||||
export NO_PERL=YesPlease
|
||||
export NO_PYTHON=YesPlease
|
||||
export NO_EXPAT=YesPlease
|
||||
export NO_TCLTK=YesPlease
|
||||
export ac_cv_fread_reads_directories=no
|
||||
export ac_cv_snprintf_returns_bogus=no
|
||||
export ac_cv_iconv_omits_bom=no
|
||||
export ac_cv_lib_curl_curl_global_init=yes
|
||||
export NO_PERL='YesPlease'
|
||||
export NO_PYTHON='YesPlease'
|
||||
export NO_EXPAT='YesPlease'
|
||||
export NO_TCLTK='YesPlease'
|
||||
export ac_cv_fread_reads_directories='no'
|
||||
export ac_cv_snprintf_returns_bogus='no'
|
||||
export ac_cv_iconv_omits_bom='no'
|
||||
export ac_cv_lib_curl_curl_global_init='yes'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue