mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
Changelog: ========== * Build: simplify handling of library soversion. * Add some new API (see the reference documentation). * Some API breaks (see the reference documentation). * Experiments to simplify GtkStack custom switcher implementations. Moved the result to the attic/ directory. * TeplView: add code from gedit: override delete_from_cursor vfunc. In gedit it's for the Ctrl+D keybinding to delete the current line. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
895 B
BlitzBasic
32 lines
895 B
BlitzBasic
SUMMARY = "Tepl library eases the development of GtkSourceView-based projects"
|
|
LICENSE = "LGPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://LICENSES/LGPL-3.0-or-later.txt;md5=c51d3eef3be114124d11349ca0d7e117"
|
|
|
|
DEPENDS = " \
|
|
gsettings-desktop-schemas \
|
|
glib-2.0 \
|
|
gtk+3 \
|
|
gtksourceview4 \
|
|
amtk \
|
|
libxml2 \
|
|
uchardet \
|
|
gtk-doc-native \
|
|
libxslt-native \
|
|
docbook-xsl-stylesheets-native \
|
|
python3-pygments-native \
|
|
"
|
|
|
|
inherit meson gobject-introspection gettext features_check pkgconfig
|
|
|
|
|
|
ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"
|
|
SRC_URI = "git://gitlab.gnome.org/swilmet/tepl;protocol=https;branch=main"
|
|
SRCREV = "d1e9cc2e4a0738f68d9002f13724b7239f075844"
|
|
S = "${WORKDIR}/git"
|
|
|
|
# gobject-introspection is mandatory and cannot be configured
|
|
REQUIRED_DISTRO_FEATURES += "gobject-introspection-data"
|
|
GIR_MESON_OPTION = ""
|
|
|
|
GTKDOC_MESON_OPTION = "gtk_doc"
|