aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Boor <florian.boor@kernelconcepts.de>2010-11-04 23:52:56 +0100
committerFlorian Boor <florian@kernelconcepts.de>2011-05-03 15:52:28 +0200
commit22666e76890bd1a8d4b469eb6865148c215de3d9 (patch)
treea874e29a2168257eb101158db61bed5509272dfe
parentb3ed6e18d94e15d37391102dbb8e7b385406b31b (diff)
downloadopenembedded-22666e76890bd1a8d4b469eb6865148c215de3d9.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/
+}