2011-03-03 13:12:54 +00:00
|
|
|
# Template file for 'libgee'
|
|
|
|
pkgname=libgee
|
2014-03-22 18:17:00 +00:00
|
|
|
version=0.6.8
|
2014-03-22 18:28:00 +00:00
|
|
|
revision=5
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2012-12-11 06:34:58 +00:00
|
|
|
configure_args="--disable-static"
|
2014-02-16 08:07:46 +00:00
|
|
|
hostmakedepends="pkg-config intltool glib-devel"
|
2013-04-13 08:15:49 +00:00
|
|
|
makedepends="libglib-devel vala-devel"
|
2011-03-03 13:12:54 +00:00
|
|
|
short_desc="GObject collection library"
|
2015-04-10 07:16:30 +00:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2011-11-09 21:54:47 +00:00
|
|
|
license="LGPL-2.1"
|
2012-08-07 07:12:33 +00:00
|
|
|
homepage="http://live.gnome.org/Libgee"
|
2014-03-22 18:17:00 +00:00
|
|
|
distfiles="${GNOME_SITE}/$pkgname/0.6/$pkgname-$version.tar.xz"
|
|
|
|
checksum=a61f8d796173d41f6144a030d4bd22461f0bb3fa18a3ebe02341b315feebf5d3
|
2013-04-13 08:15:49 +00:00
|
|
|
|
2014-02-16 08:07:46 +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
|
|
|
|
|
2013-04-13 08:15:49 +00:00
|
|
|
libgee-devel_package() {
|
2014-02-16 08:07:46 +00:00
|
|
|
depends="glib-devel ${sourcepkg}>=${version}_${revision}"
|
|
|
|
short_desc+=" - development files"
|
2013-04-13 08:15:49 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
2014-02-16 08:07:46 +00:00
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
vmove usr/share/gir-1.0
|
|
|
|
fi
|
2013-04-13 08:15:49 +00:00
|
|
|
vmove usr/share/vala
|
|
|
|
}
|
|
|
|
}
|