2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/core/curl/build
2020-01-21 02:41:09 +02:00

22 lines
425 B
Bash
Executable File

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