This repository has been archived on 2022-01-17. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-08-25 15:47:34 +02:00
|
|
|
name: curl
|
|
|
|
version: 7.65.3
|
2019-10-17 10:38:19 +02:00
|
|
|
release: 3
|
2019-08-25 15:47:34 +02:00
|
|
|
sources: https://curl.haxx.se/download/curl-%{version}.tar.gz
|
2019-10-17 10:38:19 +02:00
|
|
|
|
|
|
|
# build-dependencies: make, openssl-dev
|
|
|
|
build-dependencies: make, libressl-dev
|
2019-08-25 15:47:34 +02:00
|
|
|
|
|
|
|
@configure
|
2019-09-04 13:31:55 +02:00
|
|
|
cd %{name}-%{version}
|
2019-08-25 15:47:34 +02:00
|
|
|
./configure \
|
2019-09-04 13:31:55 +02:00
|
|
|
--prefix="%{prefix}" \
|
|
|
|
--enable-ipv6 \
|
|
|
|
--enable-unix-sockets \
|
|
|
|
--enable-static \
|
|
|
|
--enable-openssl \
|
|
|
|
--without-libidn \
|
|
|
|
--without-libidn2 \
|
|
|
|
--with-nghttp2 \
|
|
|
|
--disable-ldap \
|
|
|
|
--with-pic \
|
|
|
|
--without-libssh2 # https://bugs.alpinelinux.org/issues/10222
|