From 20d6ae8d2b67a7a2eccb57e6c7bfdeb200c7e4c9 Mon Sep 17 00:00:00 2001 From: "Mariia Movchan -X \\(mmovchan - GLOBALLOGIC INC at Cisco\\)" Date: Wed, 17 Jan 2018 16:30:44 +0000 Subject: ipcalc: add initial recipe for version 0.2.0 Signed-off-by: Mariia Movchan Signed-off-by: Armin Kuster --- .../recipes-support/ipcalc/ipcalc_0.2.0.bb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 meta-networking/recipes-support/ipcalc/ipcalc_0.2.0.bb diff --git a/meta-networking/recipes-support/ipcalc/ipcalc_0.2.0.bb b/meta-networking/recipes-support/ipcalc/ipcalc_0.2.0.bb new file mode 100644 index 0000000000..bb283c80b5 --- /dev/null +++ b/meta-networking/recipes-support/ipcalc/ipcalc_0.2.0.bb @@ -0,0 +1,19 @@ +SUMMARY = "Tool to assist in network address calculations for IPv4 and IPv6." +HOMEPAGE = "https://github.com/nmav/ipcalc" + +SECTION = "net" + +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" + +SRC_URI = "https://github.com/nmav/ipcalc/archive/${PV}.tar.gz;downloadfilename=ipcalc-${PV}.tar.gz" + +SRC_URI[md5sum] = "edbfc4cb64632e0c4f87cf81c7d8302d" +SRC_URI[sha256sum] = "c965c1296172a6acc50d54dfe81f7e5d589f9762b5d9ae459eee00349675336b" + +export USE_GEOIP = "no" + +do_install() { + install -d ${D}/${bindir} + install -m 0755 ${S}/ipcalc ${D}/${bindir} +} -- cgit 1.2.3-korg