diff options
| -rw-r--r-- | meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb | 18 |
1 files changed, 9 insertions, 9 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 index 155d2829eb..167d141e00 100644 --- a/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb +++ b/meta-oe/recipes-qt/fingerterm/fingerterm_1.0.2.bb | |||
| @@ -17,27 +17,27 @@ SRC_URI = " \ | |||
| 17 | SRC_URI[md5sum] = "d53b0f463c025583cd52accf95715448" | 17 | SRC_URI[md5sum] = "d53b0f463c025583cd52accf95715448" |
| 18 | SRC_URI[sha256sum] = "c21a07cc411d09739bd7fa248eba2bf96427b3f032382a044b6674dd82d95150" | 18 | SRC_URI[sha256sum] = "c21a07cc411d09739bd7fa248eba2bf96427b3f032382a044b6674dd82d95150" |
| 19 | 19 | ||
| 20 | S = "${WORKDIR}/${PN}" | 20 | S = "${WORKDIR}/${BPN}" |
| 21 | 21 | ||
| 22 | FILES_${PN} = " \ | 22 | FILES_${PN} = " \ |
| 23 | ${bindir}/${PN} \ | 23 | ${bindir}/${BPN} \ |
| 24 | ${datadir}/applications/${PN}.desktop \ | 24 | ${datadir}/applications/${BPN}.desktop \ |
| 25 | ${datadir}/pixmaps/${PN}.png \ | 25 | ${datadir}/pixmaps/${BPN}.png \ |
| 26 | " | 26 | " |
| 27 | 27 | ||
| 28 | do_install() { | 28 | do_install() { |
| 29 | install -d ${D}${bindir} | 29 | install -d ${D}${bindir} |
| 30 | install -m 0755 ${S}/${PN} ${D}${bindir} | 30 | install -m 0755 ${S}/${BPN} ${D}${bindir} |
| 31 | 31 | ||
| 32 | sed -i -e '/Exec.*/d' fingerterm.desktop | 32 | sed -i -e '/Exec.*/d' fingerterm.desktop |
| 33 | sed -i -e '/Icon.*/d' fingerterm.desktop | 33 | sed -i -e '/Icon.*/d' fingerterm.desktop |
| 34 | 34 | ||
| 35 | echo 'Exec=${bindir}/${PN}' >> fingerterm.desktop | 35 | echo 'Exec=${bindir}/${BPN}' >> fingerterm.desktop |
| 36 | echo 'Icon=${PN}' >> fingerterm.desktop | 36 | echo 'Icon=${BPN}' >> fingerterm.desktop |
| 37 | 37 | ||
| 38 | install -d ${D}${datadir}/applications | 38 | install -d ${D}${datadir}/applications |
| 39 | install -m 0644 ${S}/${PN}.desktop ${D}${datadir}/applications | 39 | install -m 0644 ${S}/${BPN}.desktop ${D}${datadir}/applications |
| 40 | 40 | ||
| 41 | install -d ${D}${datadir}/pixmaps | 41 | install -d ${D}${datadir}/pixmaps |
| 42 | install -m 0644 ${S}/${PN}.png ${D}${datadir}/pixmaps | 42 | install -m 0644 ${S}/${BPN}.png ${D}${datadir}/pixmaps |
| 43 | } | 43 | } |
