eth0s/toolchain/34-curl
2020-06-12 16:42:33 +08:00

13 lines
383 B
Text
Executable file

name=curl
version=7.68.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
}