]> code.ossystems Code Review - openembedded-core.git/commitdiff
mingetty: Add new mingetty package
authorXiaofeng Yan <xiaofeng.yan@windriver.com>
Wed, 1 Sep 2010 02:35:26 +0000 (10:35 +0800)
committerSaul Wold <Saul.Wold@intel.com>
Thu, 2 Sep 2010 22:19:34 +0000 (15:19 -0700)
mingetty allows for a compact getty program for virtual consoles only

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
meta/recipes-extended/mingetty/mingetty_1.08.bb [new file with mode: 0644]

diff --git a/meta/recipes-extended/mingetty/mingetty_1.08.bb b/meta/recipes-extended/mingetty/mingetty_1.08.bb
new file mode 100644 (file)
index 0000000..2b93bb4
--- /dev/null
@@ -0,0 +1,17 @@
+DESCRIPTION = " A compact getty program for virtual consoles only"
+SECTION = "console/utils"
+PRIORITY = "required"
+HOMEPAGE = "http://sourceforge.net/projects/mingetty/"
+LICENSE = "GPLv2"
+PR = "r0"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=0c56db0143f4f80c369ee3af7425af6e"
+SRC_URI = "http://cdnetworks-kr-1.dl.sourceforge.net/project/mingetty/mingetty/${PV}/mingetty-${PV}.tar.gz"
+
+EXTRA_OEMAKE = "CC='${CC}'"
+
+do_install(){
+    mkdir -p ${D}${mandir}/man8
+    mkdir -p ${D}/sbin
+    oe_runmake install DESTDIR=${D}
+}