opt/graphene/Pkgfile

23 lines
569 B
Plaintext
Raw Normal View History

2020-11-03 04:47:58 +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: 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() {
meson setup build $name-$version \
--prefix=/usr \
2022-07-09 20:53:03 +02:00
--libexecdir=/usr/lib/$name \
2022-05-31 22:31:57 +02:00
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
2020-11-03 04:47:58 +01:00
-D installed_tests=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}