blob: efac3c86ebe602e8ef6bef9f81470dc14452b314 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "Tool to assist in network address calculations for IPv4 and IPv6."
2HOMEPAGE = "https://github.com/nmav/ipcalc"
3
4SECTION = "net"
5
Andrew Geissler9aee5002022-03-30 16:27:02 +00006LICENSE = "GPL-2.0-only"
Brad Bishop316dfdd2018-06-25 12:45:53 -04007LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
8
9S = "${WORKDIR}/git"
Brad Bishop15ae2502019-06-18 21:44:24 -040010SRCREV = "c3ee70c878b9c5833a77a1f339f1ca4dc6f225c5"
Brad Bishop316dfdd2018-06-25 12:45:53 -040011SRC_URI = "\
Andrew Geissler595f6302022-01-24 19:11:47 +000012 git://github.com/nmav/ipcalc.git;protocol=https;;branch=master \
Brad Bishop316dfdd2018-06-25 12:45:53 -040013 file://0001-Makefile-pass-extra-linker-flags.patch \
14"
15
16export USE_GEOIP = "no"
17
18do_install() {
19 install -d ${D}/${bindir}
20 install -m 0755 ${S}/ipcalc ${D}/${bindir}
21}