diff options
author | Yu Ke <ke.yu@intel.com> | 2010-08-25 11:13:00 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-27 13:29:52 +0100 |
commit | da49de6885ee1bc424e70bc02f21f6ab920efb55 (patch) | |
tree | 842b4545da56e63d2645101bb8cd0865831d5db4 /meta-lsb/packages | |
parent | 923f920a7c798e675da11154ca5ecbec6059833a (diff) | |
download | poky-da49de6885ee1bc424e70bc02f21f6ab920efb55.tar.gz |
quicky: add QT app quicky, a simple note-taking application
Add quicky from qt-apps.org to validate and demo qt library. quicky is a simple note-taking application with Wiki-style syntax and behaviour.
Signed-off-by: Yu Ke <ke.yu@intel.com>
Diffstat (limited to 'meta-lsb/packages')
-rw-r--r-- | meta-lsb/packages/qt-apps/quicky_0.4.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-lsb/packages/qt-apps/quicky_0.4.bb b/meta-lsb/packages/qt-apps/quicky_0.4.bb new file mode 100644 index 0000000000..ece8ead926 --- /dev/null +++ b/meta-lsb/packages/qt-apps/quicky_0.4.bb | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "A simple note-taking application with Wiki-style syntax and behaviour" | ||
2 | HOMEPAGE = "http://qt-apps.org/content/show.php/Quicky?content=80325" | ||
3 | LICENSE = "GPLv2+" | ||
4 | SECTION = "x11/apps" | ||
5 | |||
6 | DEPENDS = "qt4-x11-free" | ||
7 | RDEPENDS = "qt4-x11-free" | ||
8 | |||
9 | SRC_URI = "http://qt-apps.org/CONTENT/content-files/80325-quicky-0.4.tar.gz" | ||
10 | |||
11 | inherit qmake2 pkgconfig | ||
12 | |||
13 | do_install() { | ||
14 | install -d ${D}${bindir} | ||
15 | install -m 0755 ${S}/${PN} ${D}${bindir} | ||
16 | } | ||