blob: dc381a628004dae098ddadb4ff695c51769dc420 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Console URL download utility supporting HTTP, FTP, etc"
2HOMEPAGE = "https://www.gnu.org/software/wget/"
3SECTION = "console/network"
4LICENSE = "GPLv3"
5LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
6DEPENDS = "gnutls zlib libpcre"
7
8INC_PR = "r16"
9
10inherit autotools gettext texinfo update-alternatives pkgconfig
11
12EXTRA_OECONF = "--enable-ipv6 --with-ssl=gnutls --disable-rpath --disable-iri \
13 --without-libgnutls-prefix ac_cv_header_uuid_uuid_h=no"
14
15ALTERNATIVE_${PN} = "wget"
16ALTERNATIVE_${PN}_class-nativesdk = ""
17ALTERNATIVE_PRIORITY = "100"
18
19RRECOMMENDS_${PN} += "ca-certificates"
20
21BBCLASSEXTEND += "nativesdk"
22
23PACKAGECONFIG ??= ""
24PACKAGECONFIG[libuuid] = "--with-libuuid, --without-libuuid,util-linux"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050025
26# Let aclocal use the relative path for the m4 file rather than
27# absolute, otherwise there might be an "Argument list too long" error
28# when it is built in a long/deep directory.
29acpaths = "-I ./m4"