vp-build/srcpkgs/mash/template

35 lines
1020 B
Bash

# Template file for 'mash'
pkgname=mash
version=0.2.0
revision=8
build_style=gnu-configure
configure_args="--disable-static $(vopt_enable gir introspection)"
hostmakedepends="pkg-config intltool glib-devel $(vopt_if gir gobject-introspection)"
makedepends="clutter-devel"
depends="clutter>=1.18"
short_desc="A small library for using 3D models within a Clutter scene"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://clutter-project.github.io/mash/"
license="LGPL-2.1"
distfiles="https://github.com/downloads/clutter-project/mash/mash-${version}.tar.xz"
checksum=fd4089e2974a1a57f9ba209a0a47924ed157da9fc9a3d65f68a6b9fdca353ccc
build_options="gir"
if [ -z "$CROSS_BUILD" ]; then
build_options_default="gir"
fi
mash-devel_package() {
depends="${makedepends} mash>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/share/gtk-doc
if [ -z "$CROSS_BUILD" ]; then
vmove usr/share/gir-1.0
fi
vmove usr/lib/*.so
}
}