14 lines
355 B
Text
Executable file
14 lines
355 B
Text
Executable file
name=curl
|
|
version=7.82.0
|
|
source="https://curl.haxx.se/download/$name-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/tools \
|
|
--disable-static \
|
|
--enable-threaded-resolver \
|
|
--with-openssl \
|
|
--with-ca-bundle=/tools/etc/ssl/cert.pem
|
|
make
|
|
make install
|
|
}
|