SUMMARY = "Line-oriented text editor" HOMEPAGE = "http://www.gnu.org/software/ed/" LICENSE = "GPLv3+" LIC_FILES_CHKSUM = "file://COPYING;md5=0c7051aef9219dc7237f206c5c4179a7 \ file://ed.h;endline=20;md5=8af8e7dc7275dca05ce6c9e7ece7aec8 \ file://main.c;endline=17;md5=d4dd6a62c502712358ca18551f978781 \ " SECTION = "base" # LSB states that ed should be in /bin/ bindir = "${base_bindir}" # Upstream regularly removes previous releases from https://ftp.gnu.org/gnu/ed/ SRC_URI = "${GNU_MIRROR}/ed/${BP}.tar.lz" UPSTREAM_CHECK_URI = "${GNU_MIRROR}/ed/" SRC_URI[md5sum] = "d3aaeb5eb032142948d7a2f98a24899b" SRC_URI[sha256sum] = "ad4489c0ad7a108c514262da28e6c2a426946fb408a3977ef1ed34308bdfd174" EXTRA_OEMAKE = "-e MAKEFLAGS=" inherit texinfo do_configure() { ${S}/configure } do_install() { oe_runmake 'DESTDIR=${D}' install # Info dir listing isn't interesting at this point so remove it if it exists. if [ -e "${D}${infodir}/dir" ]; then rm -f ${D}${infodir}/dir fi }