21 lines
563 B
Text
Executable file
21 lines
563 B
Text
Executable file
# Description: Utility and a library used for transferring files
|
|
# URL: https://curl.haxx.se/
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on: ca-certificates openssl
|
|
|
|
name=curl
|
|
version=7.82.0
|
|
release=1
|
|
source=(https://curl.haxx.se/download/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--enable-threaded-resolver \
|
|
--with-openssl \
|
|
--with-ca-bundle=/etc/ssl/cert.pem
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|