38 lines
1.1 KiB
Bash
38 lines
1.1 KiB
Bash
# Template file for 'libosinfo'
|
|
pkgname=libosinfo
|
|
version=1.1.0
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --disable-tests $(vopt_enable gir introspection)"
|
|
hostmakedepends="pkg-config intltool glib-devel wget"
|
|
makedepends="libglib-devel libsoup-gnome-devel libxml2-devel libxslt-devel vala-devel $(vopt_if gir gobject-introspection)"
|
|
depends="osinfo-db"
|
|
short_desc="GObject based library API for managing info about operating systems"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="https://libosinfo.org/"
|
|
license="GPL-2, LGPL-2.1"
|
|
distfiles="https://releases.pagure.org/libosinfo/${pkgname}-${version}.tar.gz"
|
|
checksum=600f43a4a8dae5086a01a3d44bcac2092b5fa1695121289806d544fb287d3136
|
|
|
|
# Package build options
|
|
build_options="gir"
|
|
|
|
# Disable gir for cross builds.
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="gir"
|
|
fi
|
|
|
|
libosinfo-devel_package() {
|
|
depends="libglib-devel ${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/lib/*.so
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
if [ "$build_option_gir" ]; then
|
|
vmove usr/share/gir-1.0
|
|
vmove usr/share/vala
|
|
fi
|
|
}
|
|
}
|