You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/wget.mk

31 lines
1.0 KiB

# 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/`$(TARGET)-pkg-config --libs libidn`/g;' '$(1)/configure'
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--build="`config.guess`" \
--prefix='$(PREFIX)/$(TARGET)' \
--with-ssl=gnutls
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef
$(PKG)_BUILD_x86_64-w64-mingw32 =
$(PKG)_BUILD_i686-w64-mingw32 =