repo/core/curl/build

20 lines
382 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 \
--without-libidn \
--without-libidn2 \
--disable-manual \
--disable-ldap \
--disable-ares \
--without-libidn \
--without-librtmp \
2020-01-11 07:58:04 +00:00
--with-pic \
--with-ca-fallback
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