f1884af21f
also fix comparision error. ref: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3976#note_1079639 closes #30125.
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Template file for 'graphene'
|
|
pkgname=graphene
|
|
version=1.10.6
|
|
revision=1
|
|
build_style=meson
|
|
build_helper="gir"
|
|
configure_args="-Dbenchmarks=false -Dinstalled_tests=false
|
|
-Dintrospection=$(vopt_if gir enabled disabled) -Dsse2=true"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libglib-devel"
|
|
short_desc="Thin layer of types for graphic libraries"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/ebassi/graphene"
|
|
distfiles="${GNOME_SITE}/graphene/${version%.*}/graphene-${version}.tar.xz"
|
|
checksum=80ae57723e4608e6875626a88aaa6f56dd25df75024bd16e9d77e718c3560b25
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
arm*) configure_args+=" -Darm_neon=false" ;;
|
|
esac
|
|
|
|
build_options="gir"
|
|
build_options_default="gir"
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
|
|
graphene-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/graphene-1.0
|
|
if [ "$build_option_gir" ]; then
|
|
vmove usr/share/gir-1.0
|
|
fi
|
|
}
|
|
}
|