summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/wget/wget.inc
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2011-10-19 19:53:35 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-31 22:03:22 +0000
commit165f0f6ce9a5206ecdac932ba1b8d0c8d653155e (patch)
treeb14743bba8fcba9d227ccbf98af13ff0bb09ce90 /meta/recipes-extended/wget/wget.inc
parent43d86cd9afa123b27f76cd18aed6003412eada65 (diff)
downloadpoky-165f0f6ce9a5206ecdac932ba1b8d0c8d653155e.tar.gz
wget: Add recipe from OE
Needed to support building oe-core with oe-core (From OE-Core rev: 017595a81acff23290894cf3e3e60f7fc88510f9) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/wget/wget.inc')
-rw-r--r--meta/recipes-extended/wget/wget.inc24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc
new file mode 100644
index 0000000000..589d72706b
--- /dev/null
+++ b/meta/recipes-extended/wget/wget.inc
@@ -0,0 +1,24 @@
1DESCRIPTION = "A console URL download utility featuring HTTP, FTP, and more."
2SECTION = "console/network"
3LICENSE = "GPL"
4LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
5
6DEPENDS = ""
7
8INC_PR = "r10"
9
10S = "${WORKDIR}/wget-${PV}"
11
12inherit autotools gettext update-alternatives
13
14# Disable checking for SSL since that searches the system paths
15EXTRA_OECONF = "--with-libc --enable-ipv6 --without-ssl"
16
17do_install_append () {
18 mv ${D}${bindir}/wget ${D}${bindir}/wget.${PN}
19}
20
21ALTERNATIVE_NAME = "wget"
22ALTERNATIVE_LINK = "${base_bindir}/wget"
23ALTERNATIVE_PATH = "${base_bindir}/wget.${PN}"
24ALTERNATIVE_PRIORITY = "100"