aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Boor <florian.boor@kernelconcepts.de>2010-11-04 23:52:56 +0100
committerFlorian Boor <florian.boor@kernelconcepts.de>2011-05-03 17:05:03 +0200
commit419cb686b0bfe393f7c350ac881b46e8e2a14795 (patch)
treea874e29a2168257eb101158db61bed5509272dfe
parent0fd385ef5512def0db880139b1c9fa78f652f494 (diff)
downloadopenembedded-419cb686b0bfe393f7c350ac881b46e8e2a14795.tar.gz
lsb-base: Package for LSB init-functions script
Signed-off-by: Florian Boor <florian@kernelconcepts.de>
-rw-r--r--recipes/lsb/lsb-base_3.2.bb20
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/lsb/lsb-base_3.2.bb b/recipes/lsb/lsb-base_3.2.bb
new file mode 100644
index 0000000000..213f3de18b
--- /dev/null
+++ b/recipes/lsb/lsb-base_3.2.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "Miscellaneous files for the base system."
+SECTION = "base"
+PRIORITY = "optional"
+PR = "r0"
+LICENSE = "BSD"
+PACKAGE_ARCH = "all"
+
+SRC_URI = "http://ftp.de.debian.org/debian/pool/main/l/lsb/lsb_3.2-23.tar.gz"
+
+FILES_${PN} = "/lib/lsb"
+
+S = "${WORKDIR}/lsb-3.2"
+
+do_compile () {
+}
+
+do_install () {
+ install -d ${D}/lib/lsb
+ install -m 755 init-functions ${D}/lib/lsb/
+}