blob: 23c82af4f7f39b16ce585b818e2c5f71b3018323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#############################################################
#
# wget
#
#############################################################
WGET_VERSION = 1.12
WGET_SITE = $(BR2_GNU_MIRROR)/wget
ifeq ($(BR2_PACKAGE_OPENSSL),y)
WGET_CONF_OPT += --with-ssl --with-libssl-prefix=$(STAGING_DIR)
WGET_DEPENDENCIES += openssl
endif
$(eval $(call AUTOTARGETS,package,wget))
|