expat 2.8.1 (libexpat.a) + curl 8.20.0 (libcurl.a, TLS openssl + zlib del corpus). El patrón configure-split + deps openssl/zlib materializadas funcionó limpio. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
# curl 8.20.0 → libcurl (C). Lib FUNDACIONAL: dep del crate `curl`/curl-sys (hurl y muchos tools),
|
|
# y de cola C de red. De-Alpinizada (Etapa G):
|
|
# - compiler=gcc, configure-split explícito, --disable-shared --enable-static.
|
|
# - TLS vía openssl del corpus (--with-openssl); compresión vía zlib del corpus.
|
|
# - drop de deps ausentes: --disable-ares, --without-{libidn2,nghttp2,libpsl,libssh2}. HTTP/HTTPS ok.
|
|
name = "curl"
|
|
version = "8.20.0"
|
|
|
|
[source]
|
|
tarball = "https://curl.se/download/curl-8.20.0.tar.xz"
|
|
sha256 = "63fe2dc148ba0ceae89922ef838f7e5c946272c2e78b7c59fab4b79d3ce2b896"
|
|
|
|
[build]
|
|
compiler = "gcc"
|
|
target = "x86_64-linux-musl"
|
|
link = "static"
|
|
flags = []
|
|
|
|
[build.phases]
|
|
configure = '''
|
|
./configure --build=$CBUILD --host=$CHOST --prefix=/usr \
|
|
--disable-shared --enable-static \
|
|
--with-openssl --with-zlib \
|
|
--disable-ares --without-libidn2 --without-nghttp2 --without-libpsl --without-libssh2 \
|
|
--disable-ldap --enable-ipv6 --enable-unix-sockets \
|
|
--with-ca-path=/etc/ssl/certs
|
|
'''
|
|
compile = 'make'
|
|
install = 'make DESTDIR=/out install'
|
|
|
|
[deps]
|
|
build = ["openssl", "zlib"]
|