repo/core/curl/build

26 lines
508 B
Plaintext
Raw Normal View History

2019-06-18 12:17:49 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-ipv6 \
--enable-unix-sockets \
--enable-hidden-symbols \
--disable-manual \
--disable-ldap \
--disable-ares \
2021-06-30 10:22:07 +00:00
--with-openssl \
--with-pic \
--with-ca-fallback \
2019-06-18 12:17:49 +00:00
--without-librtmp \
2020-01-20 23:41:10 +00:00
--without-icu \
2020-01-21 00:41:09 +00:00
--without-libpsl \
2021-06-30 10:22:07 +00:00
--without-libidn \
--without-libidn2 \
--without-zstd
2019-06-18 12:17:49 +00:00
2020-01-11 07:58:04 +00:00
make curl_LDFLAGS=-all-static
2019-06-18 12:17:49 +00:00
make DESTDIR="$1" install
# Remove library documentation.
rm -rf "$1/usr/share/man/man3"