mirror of
https://git.yoctoproject.org/poky
synced 2026-05-07 04:58:26 +00:00
Add .desktop for rxvt
git-svn-id: https://svn.o-hand.com/repos/poky@85 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Name=Terminal
|
||||||
|
Exec=/usr/bin/rxvt
|
||||||
|
Icon=rxvt.png
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=Utilities
|
||||||
|
StartupNotify=false
|
||||||
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 2.8 KiB |
@@ -8,8 +8,10 @@ same time, including Xft fonts."
|
|||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \
|
SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \
|
||||||
file://xwc.patch;patch=1 \
|
file://xwc.patch;patch=1 \
|
||||||
file://signedchar.patch;patch=1"
|
file://signedchar.patch;patch=1 \
|
||||||
PR = "r2"
|
file://rxvt.desktop \
|
||||||
|
file://rxvt.png"
|
||||||
|
PR = "r3"
|
||||||
|
|
||||||
inherit autotools update-alternatives
|
inherit autotools update-alternatives
|
||||||
|
|
||||||
@@ -53,3 +55,14 @@ do_compile () {
|
|||||||
# docs need "yodl" and I have no idea what that is
|
# docs need "yodl" and I have no idea what that is
|
||||||
oe_runmake -C src "LIBTOOL=$LIBTOOL"
|
oe_runmake -C src "LIBTOOL=$LIBTOOL"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
do_install_append () {
|
||||||
|
install -d ${D}/${datadir}
|
||||||
|
install -d ${D}/${datadir}/applications
|
||||||
|
install -d ${D}/${datadir}/icons/hicolor/48x48/apps
|
||||||
|
|
||||||
|
install -m 0644 ${WORKDIR}/rxvt.png ${D}/${datadir}/icons/hicolor/48x48/apps
|
||||||
|
install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications
|
||||||
|
}
|
||||||
|
|
||||||
|
FILES_${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/icons/hicolor/48x48/apps/rxvt.png"
|
||||||
|
|||||||
Reference in New Issue
Block a user