diff options
author | Ken <ken@gmx.ch> | 2009-01-21 19:55:47 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-01-21 19:58:33 +0100 |
commit | 57b3f1b6c9ecdc93271f8780f7f1d6f3d2dd2e1a (patch) | |
tree | 980c9360ea5f557362eeb462072d6ceb8cea3d51 /packages/bootchart-lite | |
parent | 513858c45929f63501af80223582408d05917eee (diff) |
bootchart-lite: new recipe; bootchart diagnostic tool for embedded systems
Diffstat (limited to 'packages/bootchart-lite')
-rw-r--r-- | packages/bootchart-lite/bootchart-lite_svn.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/bootchart-lite/bootchart-lite_svn.bb b/packages/bootchart-lite/bootchart-lite_svn.bb new file mode 100644 index 0000000000..092aee9dcd --- /dev/null +++ b/packages/bootchart-lite/bootchart-lite_svn.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "Bootchart Lite for Embedded Systems." +AUTHOR = "Fred Chien" +LICENSE = "GPLv2" +SECTION = "console/utils" +HOMEPAGE = "http://code.google.com/p/bootchart-lite/" +PV = "0.1+svnr${SRCREV}" +PR = "r0" + +SRC_URI = "svn://bootchart-lite.googlecode.com/svn/;module=trunk;proto=http" +S = "${WORKDIR}/trunk" + +inherit autotools + +pkg_postinst_${PN} () { + install -d /etc/bootchart-lite +} + +pkg_postrm_${PN} () { + rm -rf /etc/bootchart-lite +} |