# Template file for 'accountsservice'
pkgname=accountsservice
version=0.6.35
revision=2
build_style=gnu-configure
configure_args="--disable-static
 ac_cv_file__etc_redhat_release=no ac_cv_file__etc_debian_version=no
 --with-systemdsystemunitdir=/usr/lib/systemd/system"
hostmakedepends="pkg-config intltool glib-devel"
makedepends="polkit-devel systemd-devel"
make_dirs="
	/var/lib/AccountsService/users 755 root root
	/var/lib/AccountsService/icons 755 root root"
short_desc="D-Bus interfaces for querying and manipulating user account information"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://cgit.freedesktop.org/accountsservice/"
license="GPL-3"
distfiles="http://www.freedesktop.org/software/$pkgname/$pkgname-$version.tar.xz"
checksum=65a1c7013c9c6785c7feb710ee940bb297207dabdb93561fdfdd140e0dfd3038

# Package build options
build_options="gir"
desc_option_gir="Enable support for building gobject introspection data"

# 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

accountsservice-devel_package() {
	depends="${sourcepkg}>=${version}_${revision}"
	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
		fi
		vmove usr/share/gtk-doc
	}
}