new package wget

Though not a library, wget is useful because it is often used by
applications.
This commit is contained in:
Mark Brand 2012-10-11 10:24:25 +02:00
parent 9e8ce04e9c
commit bdc5cead5f
2 changed files with 34 additions and 0 deletions

View File

@ -1923,6 +1923,11 @@ USE_OSGPLUGIN(<plugin2>)
<td id="w32api-version">3.17</td>
<td id="w32api-website"><a href="http://www.mingw.org/">MinGW Windows API</a></td>
</tr>
<tr>
<td id="wget-package">wget</td>
<td id="wget-version">1.14</td>
<td id="wget-website"><a href="http://www.gnu.org/software/wget/">wget</a></td>
</tr>
<tr>
<td id="winpcap-package">winpcap</td>
<td id="winpcap-version">4_1_2</td>

29
src/wget.mk Normal file
View File

@ -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