mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
22 lines
425 B
Bash
Executable File
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
|