mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
741 B
BlitzBasic
33 lines
741 B
BlitzBasic
SUMMARY = "Openbox configuration tool"
|
|
HOMEPAGE = "http://openbox.org/wiki/ObConf:About"
|
|
SECTION = "x11/wm"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
DEPENDS = " \
|
|
openbox \
|
|
startup-notification \
|
|
gtk+3 \
|
|
"
|
|
PV = "2.0.4+git"
|
|
|
|
SRCREV = "63ec47c5e295ad4f09d1df6d92afb7e10c3fec39"
|
|
SRC_URI = " \
|
|
git://git.openbox.org/dana/obconf;branch=master \
|
|
file://0001-Fix-function-protype-visibility.patch \
|
|
"
|
|
|
|
|
|
inherit autotools gettext pkgconfig mime mime-xdg features_check
|
|
# depends on openbox, which is X11-only
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
EXTRA_AUTORECONF = ""
|
|
|
|
FILES:${PN} += "\
|
|
${datadir}/mime \
|
|
"
|
|
|
|
do_install:append () {
|
|
rm -rf ${D}${datadir}/mimelnk
|
|
}
|