eth0s/toolchain/31-curl
2021-06-13 19:27:19 +08:00

14 lines
355 B
Text
Executable file

name=curl
version=7.77.0
source="https://curl.haxx.se/download/$name-$version.tar.xz"
build() {
cd $name-$version
./configure --prefix=/tools \
--disable-static \
--enable-threaded-resolver \
--with-openssl \
--with-ca-bundle=/tools/etc/ssl/cert.pem
make
make install
}