opt/graphene/Pkgfile

23 lines
582 B
Plaintext
Raw Normal View History

2023-08-27 17:43:20 +02:00
# Description: A thin layer of graphic data types
2020-11-03 04:47:58 +01:00
# URL: https://ebassi.github.io/graphene/
2023-08-27 17:43:20 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2020-11-03 04:47:58 +01:00
# Depends on: gobject-introspection
name=graphene
2022-05-31 22:31:57 +02:00
version=1.10.8
2022-07-09 20:53:03 +02:00
release=2
2022-05-31 22:31:57 +02:00
source=(https://github.com/ebassi/graphene/archive/$version/$name-$version.tar.gz)
2020-11-03 04:47:58 +01:00
build() {
2023-08-27 17:43:20 +02:00
meson setup build $name-$version \
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D installed_tests=false
2020-11-03 04:47:58 +01:00
2023-08-27 17:43:20 +02:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2020-11-03 04:47:58 +01:00
}