vp-build/srcpkgs/grilo/template

41 lines
1.2 KiB
Bash

# Template file for 'grilo'
pkgname=grilo
version=0.3.7
revision=1
build_style=meson
configure_args="-Denable-introspection=$(vopt_if gir true false)
-Denable-vala=$(vopt_if gir true false)"
hostmakedepends="pkg-config glib-devel"
makedepends="gtk+3-devel libxml2-devel libsoup-devel liboauth-devel totem-pl-parser-devel
$(vopt_if gir gobject-introspection) $(vopt_if vala vala-devel)"
short_desc="Framework focused on making media discovery and browsing easy"
maintainer="Enno Boland <gottox@voidlinux.eu>"
license="LGPL-2.1-or-later"
homepage="http://live.gnome.org/Grilo"
distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
checksum=ea3baf71692df177649a968635ed2bc39855c34c327274245c240f726831e9b7
# Package build options
build_options="gir vala"
# Disable gir for cross builds.
if [ -z "$CROSS_BUILD" ]; then
build_options_default="gir vala"
fi
grilo-devel_package() {
depends="${makedepends} grilo>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
fi
if [ "$build_option_vala" ]; then
vmove usr/share/vala
fi
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}