compat-32/graphene-32/Pkgfile

24 lines
589 B
Plaintext
Raw Normal View History

2020-11-07 09:37:09 +01:00
# Description: A thin layer of graphic data types.
# URL: https://ebassi.github.io/graphene/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: glib-32 graphene
name=graphene-32
2021-04-13 14:33:35 +02:00
version=1.10.6
2020-11-07 09:37:09 +01:00
release=1
source=(https://github.com/ebassi/graphene/releases/download/$version/graphene-$version.tar.xz)
build() {
meson setup build graphene-$version \
--prefix=/usr \
--libdir=/usr/lib32 \
--buildtype=plain \
2021-02-16 10:20:09 +01:00
-D introspection=disabled \
2020-11-07 09:37:09 +01:00
-D installed_tests=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
rm -r $PKG/usr/include
}