void-packages/srcpkgs/libglib-static/template
Rasmus Thomsen 92ffdd5d40 New package: libglib-static-2.58.3
This is used while meson figures out building the static libs of
glib 2.60.0 correctly so we can actually build against it and is
only used by qemu-user-static
2019-03-23 07:05:25 -03:00

40 lines
1.3 KiB
Bash

# Template file for 'libglib-static'
#
# This is only used for qemu-user-static until meson figures out building static
# glib 2.60.0 via meson.
#
pkgname=libglib-static
version=2.58.3
revision=3
wrksrc="glib-${version}"
build_style=gnu-configure
configure_args="--enable-libelf --disable-fam --disable-shared --with-pcre=system
--enable-static"
hostmakedepends="automake libtool pkg-config python3 libxslt docbook-xsl"
makedepends="zlib-devel pcre-devel libffi-devel dbus-devel elfutils-devel libmount-devel"
depends="$makedepends"
short_desc="GNU library of C routines"
maintainer="Rasmus Thomsen <oss@cogitri.dev>"
license="LGPL-2.1-or-later"
homepage="https://wiki.gnome.org/Projects/GLib"
changelog="https://gitlab.gnome.org/GNOME/glib/raw/master/NEWS"
distfiles="${GNOME_SITE}/glib/${version%.*}/glib-${version}.tar.xz"
checksum=8f43c31767e88a25da72b52a40f3301fefc49a665b56dc10ee7cc9565cbe7481
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" glib-devel"
case "$XBPS_TARGET_MACHINE" in
mips*|ppc|ppc-musl) # It seems mips/ppc autoconf cache is not read?
configure_args+=" glib_cv_stack_grows=no glib_cv_rtldglobal_broken=no glib_cv_uscore=no" ;;
esac
fi
pre_configure() {
NOCONFIGURE=1 ./autogen.sh
}
post_install() {
rm -r $DESTDIR/usr/bin
rm -r $DESTDIR/usr/share
}