diff options
author | Thomas Zimmermann <ml@vdm-design.de> | 2009-11-24 13:56:39 +0000 |
---|---|---|
committer | Klaus Kurzmann <mok@fluxnetz.de> | 2009-11-24 16:02:43 +0100 |
commit | a12117346588829898e6a041a4432fb0370c0c76 (patch) | |
tree | 946d4d8df9233922a3bcf62d1098c03a56e29b81 /recipes | |
parent | 07b09f0921b9e6aa9af2e64dcd4a0b152221eadd (diff) |
xournal: add version 0.4.5 and include .desktop file from source. Fixes SHR bug #734
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/xournal/xournal_0.4.5.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/xournal/xournal_0.4.5.bb b/recipes/xournal/xournal_0.4.5.bb new file mode 100644 index 0000000000..747dfed826 --- /dev/null +++ b/recipes/xournal/xournal_0.4.5.bb @@ -0,0 +1,19 @@ +HOMEPAGE = "http://xournal.sf.net/" +DESCRIPTION = "Xournal is an application for notetaking, sketching, keeping a journal using a stylus." +DEPENDS = "gtk+ libgnomecanvas libgnomeprintui" +# For pdftopnm: +RDEPENDS = "poppler" +SECTION = "x11" +LICENSE = "GPL" +PR = "r0" + +SRC_URI = "http://xournal.sourceforge.net/xournal-${PV}.tar.gz \ + " + +inherit autotools pkgconfig + +# make desktop-install in Makefile is not useable for us, so just copy the .desktop file from source +do_install_append () { + install -d ${D}${datadir}/applications/ + install -m 0644 ${S}/xournal.desktop ${D}${datadir}/applications/ +} |