mirror of
https://git.yoctoproject.org/poky
synced 2026-04-01 14:02:23 +02:00
21 lines
600 B
BlitzBasic
21 lines
600 B
BlitzBasic
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"
|