mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
c95e155780
Changes: - rename SUMMARY with length > 80 to DESCRIPTION - rename DESCRIPTION with length < 80 to (non present tag) SUMMARY - drop final point character at the end of SUMMARY string - remove trailing whitespace of SUMMARY line Note: don't bump PR Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
25 lines
692 B
BlitzBasic
25 lines
692 B
BlitzBasic
require netcat.inc
|
|
SUMMARY = "GNU Netcat"
|
|
HOMEPAGE = "http://netcat.sourceforge.net"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
PR = "r3"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/netcat/netcat-${PV}.tar.bz2 \
|
|
file://obsolete_autoconf_macros.patch \
|
|
file://netcat-locale_h.patch \
|
|
file://make-netcat_flag_count_work.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "0a29eff1736ddb5effd0b1ec1f6fe0ef"
|
|
SRC_URI[sha256sum] = "b55af0bbdf5acc02d1eb6ab18da2acd77a400bafd074489003f3df09676332bb"
|
|
|
|
inherit autotools
|
|
|
|
do_install_append() {
|
|
install -d ${D}${bindir}
|
|
mv ${D}${bindir}/nc ${D}${bindir}/nc.${BPN}
|
|
}
|
|
ALTERNATIVE_PRIORITY = "100"
|