# HG changeset patch # User Mark Brand # Date 1349943865 -7200 # Node ID e5aad248555b1be2b57cd490a79c9e67497ba199 # Parent 2334fd92107327788afa78fe33b38e74f704687f new package wget Though not a library, wget is useful because it is often used by applications. diff --git a/index.html b/index.html --- a/index.html +++ b/index.html @@ -1924,6 +1924,11 @@ MinGW Windows API + wget + 1.14 + wget + + winpcap 4_1_2 WinPcap diff --git a/src/wget.mk b/src/wget.mk new file mode 100644 --- /dev/null +++ b/src/wget.mk @@ -0,0 +1,29 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := wget +$(PKG)_CHECKSUM := cfa0906e6f72c1c902c29b52d140c22ecdcd617e +$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) +$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.xz +$(PKG)_URL := http://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE) +$(PKG)_DEPS := gcc pthreads gnutls libntlm libidn + +define $(PKG)_UPDATE + $(WGET) -q -O- 'http://git.savannah.gnu.org/cgit/wget.git/refs/' | \ + $(SED) -n "s,.*.*,\1,p" | \ + head -1 +endef + +define $(PKG)_BUILD + # avoid conflict with base64_encode from gnutls + $(SED) -i 's/^base64_encode /wget_base64_encode /;' '$(1)/src/utils.c' + $(SED) -i 's/-lidn/`i686-pc-mingw32-pkg-config --libs libidn`/g;' '$(1)/configure' + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --build="`config.guess`" \ + --enable-static \ + --disable-shared \ + --prefix='$(PREFIX)/$(TARGET)' \ + --with-ssl=gnutls + $(MAKE) -C '$(1)' -j '$(JOBS)' install +endef