aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/di
diff options
context:
space:
mode:
authorThomas Zimmermann <ml@vdm-design.de>2009-11-28 08:01:33 +0000
committerKlaus Kurzmann <mok@fluxnetz.de>2009-11-28 10:20:48 +0100
commit111ebb91f366e09463d3e3b0dcac3cf0b2cd83df (patch)
tree8e5024a15f4b817efaca5869b96599a868655fb5 /recipes/di
parent4f6a1c0e291b9791e4fbb12d86f98303fa051ae8 (diff)
downloadopenembedded-111ebb91f366e09463d3e3b0dcac3cf0b2cd83df.tar.gz
di: new recipe
* add di (disk info) * add di to task-shr-feed * this solves SHR bug #501 Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
Diffstat (limited to 'recipes/di')
-rw-r--r--recipes/di/di_4.17.bb17
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes/di/di_4.17.bb b/recipes/di/di_4.17.bb
new file mode 100644
index 0000000000..9b04df8c24
--- /dev/null
+++ b/recipes/di/di_4.17.bb
@@ -0,0 +1,17 @@
+DESCRIPTION = "di is a disk information utility, displaying everything (and more) that your df(1) command does. It features the ability to display your disk usage in whatever format you desire/prefer/are used to. It is designed to be portable across many platforms. "
+HOMEPAGE = "http://www.gentoo.com/di/"
+LICENSE = "MIT-style"
+SECTION = "base"
+DEPENDS = "perl-native"
+
+SRC_URI = "http://www.gentoo.com/di/di-${PV}.tar.gz"
+
+do_install() {
+ # install binary
+ install -d ${D}${bindir}
+ install -m 0755 ${S}/di ${D}${bindir}
+
+ # install manpage
+ install -d ${D}${mandir}/man1
+ install -m 0644 ${S}/di.1 ${D}${mandir}/man1
+}