prepare:
wget -O curl.tar.gz https://curl.se/download/curl-7.77.0.tar.gz
tar -xf curl.tar.gz
cd curl
make:
@./configure --prefix=/usr --with-openssl
make
install:
make install DESTDIR="${PREFIX}"
uninstall:
make uninstall