2011-10-02 17:02:00 +02:00
|
|
|
# Template file for 'grilo'
|
|
|
|
pkgname=grilo
|
2014-02-19 09:45:14 +01:00
|
|
|
version=0.2.9
|
|
|
|
revision=1
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2012-11-08 23:11:40 +01:00
|
|
|
configure_args="--enable-vala --disable-static --libdir=/usr/lib"
|
2014-02-19 09:45:14 +01:00
|
|
|
hostmakedepends="libtool pkg-config intltool vala-devel"
|
2013-09-27 00:08:45 +02:00
|
|
|
makedepends="vala-devel>=0.22 gtk+3-devel>=3.8 libxml2-devel
|
2014-02-19 09:45:14 +01:00
|
|
|
libsoup-devel>=2.44 liboauth-devel totem-pl-parser-devel"
|
2011-10-02 17:02:00 +02:00
|
|
|
short_desc="Framework focused on making media discovery and browsing easy"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="LGPL-2.1"
|
2012-08-13 15:41:22 +02:00
|
|
|
homepage="http://live.gnome.org/Grilo"
|
2012-09-26 07:08:36 +02:00
|
|
|
distfiles="${GNOME_SITE}/$pkgname/0.2/$pkgname-$version.tar.xz"
|
2014-02-19 09:45:14 +01:00
|
|
|
checksum=e51e937ae1ceee31d3f07fd459cd67e17d5c4497e32b30eb883830a0995df935
|
2011-10-02 17:02:00 +02:00
|
|
|
|
2014-02-19 09:45:14 +01:00
|
|
|
# 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
|
2013-03-28 18:37:51 +01:00
|
|
|
|
2013-09-19 15:12:27 +02:00
|
|
|
pre_configure() {
|
2014-02-19 09:45:14 +01:00
|
|
|
libtoolize -f
|
2013-09-19 15:12:27 +02:00
|
|
|
}
|
|
|
|
|
2013-04-12 15:11:12 +02:00
|
|
|
grilo-devel_package() {
|
2014-02-19 09:45:14 +01:00
|
|
|
depends="gtk+3-devel libxml2-devel libsoup-devel>=2.44 grilo>=${version}_${revision}"
|
2013-05-28 09:23:29 +02:00
|
|
|
short_desc+=" - development files"
|
2013-04-12 15:11:12 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
2014-02-19 09:45:14 +01:00
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
vmove usr/share/gir-1.0
|
|
|
|
fi
|
2013-04-12 15:11:12 +02:00
|
|
|
vmove usr/lib/pkgconfig
|
|
|
|
vmove "usr/share/vala*/*"
|
2013-09-19 15:08:32 +02:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-12 15:11:12 +02:00
|
|
|
}
|
|
|
|
}
|