blob: fdf9948d3644e9994cbb19ca5b69cc4e13ca3a7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
LICENSE = "GPLv2"
DEPENDS = "gtk+ intltool-native"
DEPENDS_append_poky = " libowl"
SRC_URI = "http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.gz \
file://leafpad.desktop"
PR = "r10"
SRC_URI_append_poky += " file://owl-menu.patch;patch=1 "
inherit autotools pkgconfig
EXTRA_OECONF = " --enable-chooser --disable-gtktest --disable-print"
do_install_append () {
install -d ${D}/${datadir}
install -d ${D}/${datadir}/applications
install -m 0644 ${WORKDIR}/leafpad.desktop ${D}/${datadir}/applications
}
FILES_${PN} += "${datadir}/applications/leafpad.desktop"
|