From: Yu Ke Date: Wed, 25 Aug 2010 03:13:00 +0000 (+0800) Subject: quicky: add QT app quicky, a simple note-taking application X-Git-Tag: 2011-1~4727 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=da49de6885ee1bc424e70bc02f21f6ab920efb55;p=openembedded-core.git 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 --- 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} +}