vp-build/srcpkgs/libcryptui/template

47 lines
1.3 KiB
Bash

# Template file for 'libcryptui'
pkgname=libcryptui
version=3.12.2
revision=2
build_style=gnu-configure
configure_args="--disable-static --disable-update-mime-database
--disable-schemas-compile"
hostmakedepends="pkg-config intltool dbus-glib-devel glib gnupg"
makedepends="libSM-devel dbus-glib-devel gtk+3-devel gpgme-devel
libnotify-devel libgnome-keyring-devel"
depends="hicolor-icon-theme libgnome-keyring>=3.10 gnupg"
short_desc="GNOME Interface components for OpenPGP"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-2.0-or-later, LGPL-2.0-or-later"
homepage="http://www.gnome.org"
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
checksum=71ead1a7b496f07f6c5102ae79945dd2515b7b9342c6edefe58b47318be20866
# Package build options
build_options="gir"
# Disable gir for cross builds.
if [ -z "$CROSS_BUILD" ]; then
build_options_default="gir"
fi
if [ "$build_option_gir" ]; then
configure_args+=" --enable-introspection"
makedepends+=" gobject-introspection"
else
configure_args+=" --disable-introspection"
fi
libcryptui-devel_package() {
depends="gtk+3-devel dbus-glib-devel ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
fi
vmove usr/share/gtk-doc
vmove "usr/lib/*.so"
}
}