mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-09 15:44:52 +02:00
26 lines
595 B
PHP
26 lines
595 B
PHP
DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more."
|
|
SECTION = "console/network"
|
|
LICENSE = "GPL"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
INC_PR = "r10"
|
|
|
|
S = "${WORKDIR}/wget-${PV}"
|
|
|
|
inherit autotools gettext
|
|
|
|
EXTRA_OECONF = " \
|
|
--enable-ipv6 \
|
|
--with-libssl-prefix=${STAGING_DIR}${HOST_SYS}"
|
|
|
|
do_install_append () {
|
|
mv ${D}${bindir}/wget ${D}${bindir}/wget.${PN}
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
update-alternatives --install ${bindir}/wget wget wget.${PN} 100
|
|
}
|
|
|
|
pkg_prerm_${PN} () {
|
|
update-alternatives --remove wget wget.${PN}
|
|
}
|