From patchwork Wed Feb 27 17:33:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [meta-oe] fingerterm: Added 1.0.2 recipe Date: Wed, 27 Feb 2013 17:33:22 -0000 From: eu@felipetonello.com X-Patchwork-Id: 45231 Message-Id: <1361986402-32739-1-git-send-email-ftonello@cercacor.com> To: openembedded-devel@lists.openembedded.org Cc: "Felipe F. Tonello" From: "Felipe F. Tonello" Fingerterm is a terminal emulator for Nokia Harmattan, but it works in any Qt4 environment. This recipe can be extended by a .bbappend to add .desktop, icon and others to the target device. Signed-off-by: Felipe F. Tonello --- meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb \ No newline at end of file diff --git a/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb b/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb new file mode 100644 index 0000000..a900b97 --- /dev/null +++ b/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "A terminal emulator for Harmattan (Nokia N9/N950) with a custom \ +virtual keyboard and usability-enhancing features such as URL grabber, pan \ +gestures and customizable shortcut menu. Designed especially to be used with \ +screen and irssi." +HOMEPAGE = "http://hqh.unlink.org/harmattan" +LICENSE = "GPLv3" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" +SECTION = "qt/app" + +PR = "r0" + +inherit qt4x11 pkgconfig + +SRC_URI = " \ + http://hqh.unlink.org/harmattan/fingerterm-${PV}.tar.gz \ +" +SRC_URI[md5sum] = "d53b0f463c025583cd52accf95715448" +SRC_URI[sha256sum] = "c21a07cc411d09739bd7fa248eba2bf96427b3f032382a044b6674dd82d95150" + +S = "${WORKDIR}/${PN}" + +FILES_${PN} = " \ + ${bindir}/${PN} \ +" + +do_install() { + install -d ${D}${bindir} + install -m 0744 ${S}/${PN} ${D}${bindir} +}