eth0s/toolchain/31-curl

14 lines
383 B
Text
Raw Normal View History

2019-11-03 17:22:17 +08:00
name=curl
2020-06-12 16:42:33 +08:00
version=7.68.0
2019-11-03 17:22:17 +08:00
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
}