blob: 589d72706bb151880179d6deb43fc51ba2f81e73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more."
SECTION = "console/network"
LICENSE = "GPL"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
DEPENDS = ""
INC_PR = "r10"
S = "${WORKDIR}/wget-${PV}"
inherit autotools gettext update-alternatives
# Disable checking for SSL since that searches the system paths
EXTRA_OECONF = "--with-libc --enable-ipv6 --without-ssl"
do_install_append () {
mv ${D}${bindir}/wget ${D}${bindir}/wget.${PN}
}
ALTERNATIVE_NAME = "wget"
ALTERNATIVE_LINK = "${base_bindir}/wget"
ALTERNATIVE_PATH = "${base_bindir}/wget.${PN}"
ALTERNATIVE_PRIORITY = "100"
|