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 | |
parent | 923f920a7c798e675da11154ca5ecbec6059833a (diff) | |
download | openembedded-core-da49de6885ee1bc424e70bc02f21f6ab920efb55.tar.gz openembedded-core-da49de6885ee1bc424e70bc02f21f6ab920efb55.tar.bz2 openembedded-core-da49de6885ee1bc424e70bc02f21f6ab920efb55.zip |
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>
-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 @@ +DESCRIPTION = "A simple note-taking application with Wiki-style syntax and behaviour" +HOMEPAGE = "http://qt-apps.org/content/show.php/Quicky?content=80325" +LICENSE = "GPLv2+" +SECTION = "x11/apps" + +DEPENDS = "qt4-x11-free" +RDEPENDS = "qt4-x11-free" + +SRC_URI = "http://qt-apps.org/CONTENT/content-files/80325-quicky-0.4.tar.gz" + +inherit qmake2 pkgconfig + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${S}/${PN} ${D}${bindir} +} |