52 lines
1.5 KiB
Bash
52 lines
1.5 KiB
Bash
# Template file for 'libshumate'
|
|
pkgname=libshumate
|
|
version=1.2.2
|
|
revision=1
|
|
build_style=meson
|
|
build_helper="gir"
|
|
configure_args="$(vopt_bool gir vapi) $(vopt_bool gir gir)
|
|
$(vopt_bool gir gtk_doc)"
|
|
hostmakedepends="pkg-config $(vopt_if gir 'gi-docgen vala') glib-devel gettext
|
|
gperf"
|
|
makedepends="libglib-devel sqlite-devel cairo-devel gtk4-devel libsoup3-devel
|
|
protobuf-c-devel"
|
|
checkdepends="dbus xvfb-run"
|
|
short_desc="C library providing a GtkWidget to display maps"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://wiki.gnome.org/Projects/libshumate"
|
|
#changelog="https://gitlab.gnome.org/GNOME/libshumate/-/raw/main/NEWS"
|
|
changelog="https://gitlab.gnome.org/GNOME/libshumate/-/raw/libshumate-1-2/NEWS"
|
|
distfiles="${GNOME_SITE}/libshumate/${version%.*}/libshumate-${version}.tar.xz"
|
|
checksum=6f587579f7f2d60b38d3f4727eb1a8d2feac9cbdc018e53ff5f772a8608fa44b
|
|
make_check_pre="dbus-run-session xvfb-run"
|
|
|
|
build_options="gir"
|
|
build_options_default="gir"
|
|
|
|
post_patch() {
|
|
vsed -i shumate/meson.build -e '/-DG_DISABLE_ASSERT/d'
|
|
}
|
|
|
|
pre_build() {
|
|
# help gi-docgen find gi files on cross
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
export XDG_DATA_DIRS=/usr/$XBPS_CROSS_TRIPLET/usr/share/
|
|
fi
|
|
}
|
|
|
|
libshumate-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
if [ "${build_option_gir}" ]; then
|
|
vmove usr/share/gir-1.0
|
|
vmove usr/share/vala
|
|
vmove usr/share/doc
|
|
fi
|
|
}
|
|
}
|