aboutsummaryrefslogtreecommitdiffstats
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:02:39 +0000
commit017595a81acff23290894cf3e3e60f7fc88510f9 (patch)
treee2d4308d8860f2996c89b7fbd5f56c5195da0693 /meta/recipes-extended/wget/wget.inc
parent289bae7d3722dd00385d198797e5a5c2ae0a9fab (diff)
downloadopenembedded-core-contrib-017595a81acff23290894cf3e3e60f7fc88510f9.tar.gz
wget: Add recipe from OE
Needed to support building oe-core with oe-core Signed-off-by: Saul Wold <sgw@linux.intel.com>
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 @@
+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"