From: Oyvind Repvik Date: Sat, 7 Apr 2007 21:22:01 +0000 (+0000) Subject: miconapl/micro-evtd: Actually add the .bb files themselves X-Git-Tag: Release-2010-05/1~8868^2~745 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d890477efc2cb214efa0fc3146e8c1f6451ad4e3;p=openembedded.git miconapl/micro-evtd: Actually add the .bb files themselves --- diff --git a/packages/miconapl/miconapl_0.0.1.bb b/packages/miconapl/miconapl_0.0.1.bb new file mode 100644 index 0000000000..ece7d16df1 --- /dev/null +++ b/packages/miconapl/miconapl_0.0.1.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "miconapl daemon for ARM Linkstations" +SECTION = "console/network" +DEPENDS = "" +PR = "r0" +LICENSE = "GPL" +COMPATIBLE_MACHINE = "(lsarm)" + +SRC_URI = "http://downloads.linkstationwiki.net/Users/timtimred/lsarm/miconapl.tar.gz" + +inherit autotools gettext update-rc.d + +S = ${WORKDIR}/miconapl + +INITSCRIPT_NAME = "miconapl" +INITSCRIPT_PARAMS = "defaults 95" + +do_configure() { +} + +do_compile() { +} + +do_install() { + install -D -m 0755 ${S}/usr/local/sbin/miconapl ${D}${sbindir}/miconapl + install -D -m 0755 ${S}/etc/init.d/miconapl ${D}${sysconfdir}/init.d/miconapl +} diff --git a/packages/micro-evtd/micro-evtd_0.0.1.bb b/packages/micro-evtd/micro-evtd_0.0.1.bb new file mode 100644 index 0000000000..c66975c6ae --- /dev/null +++ b/packages/micro-evtd/micro-evtd_0.0.1.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "micro_evtd daemon for ARM Linkstations" +SECTION = "console/network" +PR = "r2" +LICENSE = "GPL" +COMPATIBLE_MACHINE = "(lsarm)" + +SRC_URI = "http://downloads.linkstationwiki.net/Users/timtimred/lsarm/micro_evtd.tar.gz" + +inherit autotools gettext update-rc.d + +S = ${WORKDIR}/micro_evtd + +INITSCRIPT_NAME = "microevtd" +INITSCRIPT_PARAMS = "defaults 92" + +do_configure() { +} + +do_install() { + install -D -m 0755 ${S}/micro_evtd ${D}${sbindir}/micro_evtd + install -D -m 0755 ${S}/init ${D}${sysconfdir}/init.d/microevtd +}