mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
- Make matchbox themes without a corresponding gtk theme use Clearlooks - Add settings-daemon, matchbox-config-gtk and leafpad to meta-oh - Add settings-daemon - Add matchbox-config-gtk - Change Leafpad desktop shortcut from 'Leafpad' to 'Notes' git-svn-id: https://svn.o-hand.com/repos/poky@120 311d38ba-8fff-0310-9ca6-ca027cbcb966
22 lines
665 B
BlitzBasic
22 lines
665 B
BlitzBasic
LICENSE = "GPLv2"
|
|
DEPENDS = "gtk+"
|
|
SRC_URI = "http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.gz \
|
|
file://leafpad.desktop \
|
|
file://leafpad.png"
|
|
PR = "r1"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = " --enable-chooser --disable-gtktest --disable-print"
|
|
|
|
do_install_append () {
|
|
install -d ${D}/${datadir}
|
|
install -d ${D}/${datadir}/applications
|
|
install -d ${D}/${datadir}/pixmaps/
|
|
|
|
install -m 0644 ${WORKDIR}/leafpad.png ${D}/${datadir}/pixmaps
|
|
install -m 0644 ${WORKDIR}/leafpad.desktop ${D}/${datadir}/applications
|
|
}
|
|
|
|
FILES_${PN} += "${datadir}/applications/leafpad.desktop ${datadir}/pixmaps/leafpad.png"
|