forked from ports/compat-32
26 lines
628 B
Plaintext
26 lines
628 B
Plaintext
# Description: A thin layer of graphic data types
|
|
# URL: https://ebassi.github.io/graphene/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: glib-32 graphene
|
|
|
|
name=graphene-32
|
|
version=1.10.8
|
|
release=1
|
|
source=(https://github.com/ebassi/graphene/archive/$version/graphene-$version.tar.gz)
|
|
|
|
build() {
|
|
meson setup build graphene-$version \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--buildtype=plain \
|
|
-D b_lto=true \
|
|
-D b_pie=true \
|
|
-D introspection=disabled \
|
|
-D installed_tests=false
|
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -r $PKG/usr/include
|
|
}
|