eth0s/toolchain/31-curl
2021-04-18 08:19:42 +08:00

13 lines
353 B
Text
Executable file

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