From aaf7c912cacc3c7923fd76084f5e5990f79bfeba Mon Sep 17 00:00:00 2001 From: Ricardo Salveti de Araujo Date: Tue, 10 Nov 2009 16:53:51 -0300 Subject: [PATCH 116/118] mingetty-1.08: adding recipe Signed-off-by: Ricardo Salveti de Araujo --- recipes/mingetty/mingetty_1.08.bb | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) create mode 100644 recipes/mingetty/mingetty_1.08.bb diff --git a/recipes/mingetty/mingetty_1.08.bb b/recipes/mingetty/mingetty_1.08.bb new file mode 100644 index 0000000..2b30e00 --- /dev/null +++ b/recipes/mingetty/mingetty_1.08.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "small Linux console gett" +HOMEPAGE = "http://sourceforge.net/projects/mingetty" +LICENSE = "GPL" +PR = "r0" + +inherit base + +SRC_URI = "${SOURCEFORGE_MIRROR}/mingetty/mingetty-${PV}.tar.gz" + +FILES_${PN} = "${base_sbindir}/mingetty" +PACKAGES = "${PN} ${PN}-doc" + +CFLAGS += "-D_GNU_SOURCE" + +do_install() { + install -d ${D}${base_sbindir} + install -m 0755 ${S}/mingetty ${D}${base_sbindir}/ + install -d ${D}${mandir}/man8 + install -m 0644 ${S}/mingetty.8 ${D}${mandir}/man8/ +} -- 1.6.3.3