18 lines
693 B
Plaintext
18 lines
693 B
Plaintext
# curl
|
|
ExternalProject_Add(curl
|
|
URL https://curl.se/download/curl-8.2.1.tar.gz
|
|
DOWNLOAD_NO_PROGRESS 1
|
|
DOWNLOAD_DIR "${TD_CONTRIB_DIR}/deps-download"
|
|
#GIT_REPOSITORY https://github.com/curl/curl.git
|
|
#GIT_TAG curl-7_88_1
|
|
SOURCE_DIR "${TD_CONTRIB_DIR}/curl"
|
|
BUILD_IN_SOURCE TRUE
|
|
BUILD_ALWAYS 1
|
|
#UPDATE_COMMAND ""
|
|
CONFIGURE_COMMAND ./configure --prefix=$ENV{HOME}/.cos-local.1 --without-ssl --enable-shared=no --disable-ldap --disable-ldaps --without-brotli --without-zstd
|
|
#CONFIGURE_COMMAND ./configure --without-ssl
|
|
BUILD_COMMAND make
|
|
INSTALL_COMMAND make install
|
|
TEST_COMMAND ""
|
|
)
|