mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00: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>
29 lines
759 B
BlitzBasic
29 lines
759 B
BlitzBasic
SUMMARY = "libmypaint is a library for making brushstrokes"
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=9d13203ab4013e5a14dd62105f75d58b"
|
|
|
|
DEPENDS = " \
|
|
glib-2.0-native \
|
|
intltool-native \
|
|
glib-2.0 \
|
|
babl \
|
|
json-c \
|
|
"
|
|
|
|
inherit autotools gobject-introspection gettext pkgconfig python3native
|
|
|
|
SRC_URI = "git://github.com/mypaint/libmypaint.git;protocol=https;branch=libmypaint-v1 \
|
|
file://0001-make-build-compatible-w.-autoconf-2.7.patch \
|
|
"
|
|
SRCREV = "2768251dacce3939136c839aeca413f4aa4241d0"
|
|
|
|
PV = "1.6.1"
|
|
|
|
|
|
EXTRA_AUTORECONF += "-I m4"
|
|
|
|
do_configure:append() {
|
|
# autogen uses python2 so generate headers ourselves
|
|
(cd ${S} && python3 generate.py mypaint-brush-settings-gen.h brushsettings-gen.h)
|
|
}
|