diff options
Diffstat (limited to 'meta-oe/recipes-qt')
-rw-r--r-- | meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb | 44 |
1 files changed, 44 insertions, 0 deletions
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 000000000..9d590fdc6 --- /dev/null +++ b/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb | |||
@@ -0,0 +1,44 @@ | |||
1 | DESCRIPTION = "A terminal emulator for Harmattan (Nokia N9/N950) with a custom \ | ||
2 | virtual keyboard and usability-enhancing features such as URL grabber, pan \ | ||
3 | gestures and customizable shortcut menu. Designed especially to be used with \ | ||
4 | screen and irssi." | ||
5 | HOMEPAGE = "http://hqh.unlink.org/harmattan" | ||
6 | LICENSE = "GPLv3" | ||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
8 | SECTION = "qt/app" | ||
9 | |||
10 | PR = "r0" | ||
11 | |||
12 | inherit qt4x11 pkgconfig | ||
13 | |||
14 | SRC_URI = " \ | ||
15 | http://hqh.unlink.org/harmattan/fingerterm-${PV}.tar.gz \ | ||
16 | " | ||
17 | |||
18 | SRC_URI[md5sum] = "d53b0f463c025583cd52accf95715448" | ||
19 | SRC_URI[sha256sum] = "c21a07cc411d09739bd7fa248eba2bf96427b3f032382a044b6674dd82d95150" | ||
20 | |||
21 | S = "${WORKDIR}/${PN}" | ||
22 | |||
23 | FILES_${PN} = " \ | ||
24 | ${bindir}/${PN} \ | ||
25 | ${datadir}/applications/${PN}.desktop \ | ||
26 | ${datadir}/pixmaps/${PN}.png \ | ||
27 | " | ||
28 | |||
29 | do_install() { | ||
30 | install -d ${D}${bindir} | ||
31 | install -m 0744 ${S}/${PN} ${D}${bindir} | ||
32 | |||
33 | sed -i -e '/Exec.*/d' fingerterm.desktop | ||
34 | sed -i -e '/Icon.*/d' fingerterm.desktop | ||
35 | |||
36 | echo 'Exec=${bindir}/${PN}' >> fingerterm.desktop | ||
37 | echo 'Icon=${PN}' >> fingerterm.desktop | ||
38 | |||
39 | install -d ${D}${datadir}/applications | ||
40 | install -m 0644 ${S}/${PN}.desktop ${D}${datadir}/applications | ||
41 | |||
42 | install -d ${D}${datadir}/pixmaps | ||
43 | install -m 0644 ${S}/${PN}.png ${D}${datadir}/pixmaps | ||
44 | } | ||