void-packages/srcpkgs/libsecret/template

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2012-09-25 14:03:29 +00:00
# Template file for 'libsecret'
pkgname=libsecret
2014-03-15 12:02:02 +00:00
version=0.18
revision=2
2012-09-25 14:03:29 +00:00
build_style=gnu-configure
2014-02-19 08:58:51 +00:00
configure_args="--disable-static --with-libgcrypt-prefix=${XBPS_CROSS_BASE}/usr"
hostmakedepends="pkg-config intltool gnome-doc-utils glib-devel libxslt"
2013-03-28 08:46:40 +00:00
makedepends="vala-devel>=0.20 libgcrypt-devel"
2012-09-25 14:03:29 +00:00
short_desc="GObject based library for accessing the Secret Service API"
maintainer="Juan RP <xtraeme@gmail.com>"
license="GPL-2, LGPL-2.1"
homepage="http://www.gnome.org"
2014-03-15 12:02:02 +00:00
distfiles="${GNOME_SITE}/$pkgname/0.18/$pkgname-${version}.tar.xz"
checksum=0c73aa762dbd1e38ba7b03de350e23ce818cb810b0784375e95ef61e004b02e3
2014-02-19 08:58:51 +00:00
# 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
libsecret-devel_package() {
depends="libglib-devel ${sourcepkg}-${version}_${revision}"
2013-08-26 19:37:54 +00:00
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
2013-08-26 19:37:54 +00:00
vmove "usr/lib/*.so"
vmove usr/share/gtk-doc
2014-02-19 08:58:51 +00:00
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
vmove usr/share/vala
fi
}
}