2019-11-03 17:22:17 +08:00
|
|
|
name=curl
|
2021-06-13 19:27:19 +08:00
|
|
|
version=7.77.0
|
2021-04-18 08:19:42 +08:00
|
|
|
source="https://curl.haxx.se/download/$name-$version.tar.xz"
|
2019-11-03 17:22:17 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2021-06-13 19:27:19 +08:00
|
|
|
./configure --prefix=/tools \
|
|
|
|
--disable-static \
|
2019-11-03 17:22:17 +08:00
|
|
|
--enable-threaded-resolver \
|
2021-06-13 19:27:19 +08:00
|
|
|
--with-openssl \
|
2021-04-18 08:19:42 +08:00
|
|
|
--with-ca-bundle=/tools/etc/ssl/cert.pem
|
2019-11-03 17:22:17 +08:00
|
|
|
make
|
2021-04-18 08:19:42 +08:00
|
|
|
make install
|
2019-11-03 17:22:17 +08:00
|
|
|
}
|