]> git.armaanb.net Git - asd-repo.git/blob - core/curl/build
Adapt for asd linux
[asd-repo.git] / core / curl / build
1 #!/bin/sh -e
2
3 ./configure \
4     --prefix=/usr \
5     --enable-ipv6 \
6     --enable-unix-sockets \
7     --enable-hidden-symbols \
8     --without-libidn \
9     --without-libidn2 \
10     --disable-manual \
11     --disable-ldap \
12     --disable-ares \
13     --without-librtmp \
14     --without-icu \
15     --without-libpsl \
16     --with-pic \
17     --with-openssl \
18     --with-ca-fallback
19
20 make curl_LDFLAGS=-all-static
21 make DESTDIR="$1" install