eth0s/toolchain/31-curl
2020-11-13 13:58:01 +08:00

13 lines
383 B
Text
Executable file

name=curl
version=7.73.0
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/certs/ca-certificates.crt
make
make DESTDIR=$PKG install
}