33 lines
965 B
Bash
33 lines
965 B
Bash
# Template build file for 'json-glib'.
|
|
pkgname=json-glib
|
|
version=1.2.8
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="$(vopt_enable gir introspection)"
|
|
hostmakedepends="pkg-config glib-devel $(vopt_if gir gobject-introspection)"
|
|
makedepends="libglib-devel"
|
|
short_desc="A JSON parser for GLib-based libraries and applications"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://live.gnome.org/JsonGlib"
|
|
license="LGPL-2"
|
|
distfiles="${GNOME_SITE}/${pkgname}/${version%.*}/${pkgname}-${version}.tar.xz"
|
|
checksum=fd55a9037d39e7a10f0db64309f5f0265fa32ec962bf85066087b83a2807f40a
|
|
|
|
# Package build options
|
|
build_options="gir"
|
|
|
|
# Disable gir for cross builds.
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="gir"
|
|
fi
|
|
|
|
json-glib-devel_package() {
|
|
depends="libglib-devel ${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/share
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|