void-packages/srcpkgs/gcr/template
Jürgen Buchmüller 49cf1b1fa5 gcr: update to 3.36.0
Set gtk_doc=false for cross builds because gck-scan is built for
the target and would need to be run under qemu, which I didn't
find out how to achieve.
2020-03-21 10:20:03 +01:00

54 lines
1.3 KiB
Bash

# Template file for 'gcr'
pkgname=gcr
version=3.36.0
revision=1
build_style=meson
build_helper="gir"
hostmakedepends="gettext glib-devel gnupg2 gtk-doc intltool pkg-config
libxslt $(vopt_if vala vala)"
makedepends="gtk+3-devel libgcrypt-devel p11-kit-devel libxslt-devel
$(vopt_if vala vala)"
depends="desktop-file-utils hicolor-icon-theme gnupg2"
short_desc="GNOME crypto package"
maintainer="Orphaned <orphan@voidlinux.org>"
license="LGPL-2.0-or-later, LGPL-2.1-or-later, GPL-2.0-or-later"
homepage="http://www.gnome.org"
distfiles="${GNOME_SITE}/gcr/${version%.*}/gcr-${version}.tar.xz"
checksum=aaf9bed017a2263c6145c89a1a84178f9f40f238426463e4ae486694ef5f6601
if [ "$CROSS_BUILD" ]; then
configure_args="-Dgtk_doc=false"
fi
# Package build options
build_options="gir vala"
build_options_default="gir vala"
do_check() {
# requires X11 server
:
}
post_install() {
vinstall ${FILESDIR}/10-gcr-memlock.conf 644 etc/security/limits.d
}
gcr-devel_package() {
depends="${makedepends} gcr>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
if [ -z "$CROSS_BUILD" ]; then
vmove usr/share/gtk-doc
fi
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
fi
if [ "$build_option_vala" ]; then
vmove usr/share/vala
fi
}
}