void-packages/srcpkgs/gtksourceview5/template

54 lines
1.7 KiB
Bash

# Template file for 'gtksourceview5'
pkgname=gtksourceview5
version=5.4.0
revision=1
wrksrc="gtksourceview-${version}"
build_style=meson
build_helper="gir"
configure_args="-Dintrospection=$(vopt_if gir enabled disabled)
$(vopt_bool gir vapi) $(vopt_bool gtk_doc gtk_doc)"
hostmakedepends="glib-devel itstool libxslt pkg-config gtk4 gettext
$(vopt_if gir vala) $(vopt_if gtk_doc gi-docgen)"
makedepends="gtk4-devel libglib-devel libxml2-devel $(vopt_if gir vala)
pcre2-devel"
checkdepends="xvfb-run cantarell-fonts"
short_desc="Text widget that extends GTK4 GtkTextView widget"
maintainer="Michal Vasilek <michal@vasilek.cz>"
license="LGPL-2.1-or-later"
homepage="https://wiki.gnome.org/Projects/GtkSourceView"
#changelog="https://gitlab.gnome.org/GNOME/gtksourceview/-/raw/master/NEWS"
changelog="https://gitlab.gnome.org/GNOME/gtksourceview/-/raw/gtksourceview-5-4/NEWS"
distfiles="${GNOME_SITE}/gtksourceview/${version%.*}/gtksourceview-${version}.tar.xz"
checksum=003bc217e670a8ec8aa3aece994b70e70b7d6b8074938adda21718555d84e637
# Package build options
build_options="gir gtk_doc"
desc_option_gtk_doc="Build API docs via gtk-doc"
build_options_default="gir"
if [ -z "$CROSS_BUILD" ]; then
build_options_default+=" gtk_doc"
fi
do_check() {
xvfb-run ninja -C build test
}
gtksourceview5-devel_package() {
depends="${sourcepkg}>=${version}_${revision} gtk4-devel libglib-devel
libxml2-devel pcre2-devel"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
if [ "$build_option_gtk_doc" ]; then
vmove usr/share/doc
fi
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
vmove usr/share/vala
fi
}
}