47 lines
1.5 KiB
Bash
47 lines
1.5 KiB
Bash
# Template file for 'libgweather'
|
|
pkgname=libgweather
|
|
reverts="40.0_1"
|
|
version=4.4.0
|
|
revision=1
|
|
build_style=meson
|
|
build_helper="gir"
|
|
configure_args="$(vopt_bool gir enable_vala) $(vopt_bool gir introspection)
|
|
$(vopt_bool gtk_doc gtk_doc) -Dzoneinfo_dir=/usr/share/zoneinfo"
|
|
hostmakedepends="glib-devel gettext pkg-config python3-gobject-devel
|
|
$(vopt_if gir vala) $(vopt_if gtk_doc gi-docgen)"
|
|
makedepends="geocode-glib-devel gtk+3-devel libsoup3-devel json-glib-devel"
|
|
depends="tzdata"
|
|
short_desc="GNOME Weather information access library"
|
|
maintainer="Michal Vasilek <michal@vasilek.cz>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="https://wiki.gnome.org/Projects/LibGWeather"
|
|
changelog="https://gitlab.gnome.org/GNOME/libgweather/-/raw/main/NEWS"
|
|
distfiles="${GNOME_SITE}/libgweather/${version%.*}/libgweather-${version}.tar.xz"
|
|
checksum=366e866ff2a708b894cfea9475b8e8ff54cb3e2b477ea72a8ade0dabee5f48a4
|
|
|
|
build_options="gir gtk_doc"
|
|
build_options_default="gir gtk_doc"
|
|
|
|
post_patch() {
|
|
# This test requires LC_IDENTIFICATION, which is a GLIBC's extension
|
|
# And looks like we didn't ship it.
|
|
vsed -i -e '/setlocale.*fr_FR/i return;' libgweather/tests/test_libgweather.c
|
|
}
|
|
|
|
libgweather-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision} gtk+3-devel"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
if [ "$build_option_gir" ]; then
|
|
vmove usr/share/gir-1.0
|
|
vmove usr/share/vala
|
|
fi
|
|
if [ "$build_option_gtk_doc" ]; then
|
|
vmove usr/share/doc
|
|
fi
|
|
}
|
|
}
|