compat-32/graphene-32/Pkgfile
2020-11-07 19:37:09 +11:00

24 lines
586 B
Plaintext

# 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
version=1.10.2
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 \
-D introspection=false \
-D installed_tests=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
rm -r $PKG/usr/include
}