2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/core/curl/build
2021-06-30 10:22:07 +00:00

22 lines
423 B
Bash
Executable File

#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-ipv6 \
--enable-unix-sockets \
--enable-hidden-symbols \
--disable-manual \
--disable-ldap \
--disable-ares \
--with-openssl \
--with-pic \
--with-ca-fallback \
--without-librtmp \
--without-icu \
--without-libpsl \
--without-libidn \
--without-libidn2
make curl_LDFLAGS=-all-static
make DESTDIR="$1" install