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.
24 lines
581 B
24 lines
581 B
4 years ago
|
################################################################################
|
||
|
#
|
||
|
# wget
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
WGET_VERSION = 1.20.3
|
||
|
WGET_DIR = wget-$(WGET_VERSION)
|
||
|
WGET_SOURCE = wget-$(WGET_VERSION).tar.gz
|
||
|
WGET_SITE = $(GNU_MIRROR)/wget
|
||
|
|
||
|
WGET_DEPENDENCIES = openssl
|
||
|
|
||
|
WGET_CONF_OPTS = \
|
||
|
--datarootdir=$(REMOVE_datarootdir) \
|
||
|
--sysconfdir=$(REMOVE_sysconfdir) \
|
||
|
--with-gnu-ld \
|
||
|
--with-ssl=openssl \
|
||
|
--disable-debug \
|
||
|
CFLAGS="$(TARGET_CFLAGS) -DOPENSSL_NO_ENGINE"
|
||
|
|
||
|
wget: | $(TARGET_DIR)
|
||
|
$(call autotools-package)
|