blob: d509aa3dd061c6d7729ebcf76083a7bf1c58af83 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001SUMMARY = "libmypaint is a library for making brushstrokes"
2LICENSE = "ISC"
3LIC_FILES_CHKSUM = "file://COPYING;md5=9d13203ab4013e5a14dd62105f75d58b"
4
5DEPENDS = " \
6 glib-2.0-native \
7 intltool-native \
8 glib-2.0 \
9 babl \
10 json-c \
11"
12
Andrew Geissler5199d832021-09-24 16:47:35 -050013inherit autotools gobject-introspection gettext pkgconfig python3native
Andrew Geissler82c905d2020-04-13 13:39:40 -050014
Andrew Geisslerac970dd2021-02-12 15:32:45 -060015SRC_URI = "git://github.com/mypaint/libmypaint.git;protocol=https;branch=libmypaint-v1 \
16 file://0001-make-build-compatible-w.-autoconf-2.7.patch \
17 "
Andrew Geissler89770b02020-06-13 10:40:47 -050018SRCREV = "2768251dacce3939136c839aeca413f4aa4241d0"
19PV = "1.6.1"
Andrew Geissler82c905d2020-04-13 13:39:40 -050020S = "${WORKDIR}/git"
21
Patrick Williams213cb262021-08-07 19:21:33 -050022do_configure:append() {
Andrew Geissler82c905d2020-04-13 13:39:40 -050023 # autogen uses python2 so generate headers ourselves
24 cd ${S}
25 python3 generate.py mypaint-brush-settings-gen.h brushsettings-gen.h
26}