summaryrefslogtreecommitdiffstats
path: root/src/wget.mk
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2012-10-11 08:24:25 (GMT)
committerMark Brand <mabrand@mabrand.nl>2012-10-11 09:08:46 (GMT)
commitbdc5cead5f30ee571152bf3c81c5af4a70f0eeb0 (patch)
tree570332e2a4b865d4b280f165a629fd71accf3d70 /src/wget.mk
parent9e8ce04e9c5f14cb7c089fd33c62cbac53445d8b (diff)
downloadmxe-bdc5cead5f30ee571152bf3c81c5af4a70f0eeb0.zip
mxe-bdc5cead5f30ee571152bf3c81c5af4a70f0eeb0.tar.gz
mxe-bdc5cead5f30ee571152bf3c81c5af4a70f0eeb0.tar.bz2
new package wget
Though not a library, wget is useful because it is often used by applications.
Diffstat (limited to 'src/wget.mk')
-rw-r--r--src/wget.mk29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/wget.mk b/src/wget.mk
new file mode 100644
index 0000000..65fa2de
--- /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,.*<a href='/cgit/wget.git/tag/?id=v\([0-9.]*\)'>.*,\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