diff options
-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 | } | ||