# COMPILE REQUIREMENT: mingw32
# RUNTIME REQUIREMENT: mingw32
# DESC: mingw-curl: (Curl (MingW32 Cross Compile))
# DESC: mingw-curl:
# DESC: mingw-curl: Curl is a command line tool for transferring data specified with URL
# DESC: mingw-curl: syntax. The command is designed to work without user interaction or
# DESC: mingw-curl: any kind of interactivity. Curl offers a busload of useful tricks
# DESC: mingw-curl: like proxy support, user authentication, ftp upload, HTTP post, SSL
# DESC: mingw-curl: (https:) connections, cookies, file transfer resume and more.
# DESC: mingw-curl:
# DESC: mingw-curl: libcurl is a library that Curl uses to do its job. It is readily
# DESC: mingw-curl: available to be used by your software, too.
PATH="/usr/i586-mingw32msvc/bin:${PATH}"
export PATH
CC='i586-mingw32msvc-gcc' ./configure --host=i586-mingw32msvc --prefix=/usr/i586-mingw32msvc --without-ssl --disable-ipv6 --disable-ldap && \
make && \
${installmonitor} make install || exit 1
|