blob: e328f0c8f2c03bb18df5eded02a3095cdb99b194 (
plain)
1 # Description: A thin layer of graphic data types.
2 # URL: https://ebassi.github.io/graphene/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: gobject-introspection
5
6 name=graphene
7 version=1.10.8
8 release=2
9 source=(https://github.com/ebassi/graphene/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 meson setup build $name-$version \
13 --prefix=/usr \
14 --libexecdir=/usr/lib/$name \
15 --wrap-mode nodownload \
16 -D b_lto=true \
17 -D b_pie=true \
18 -D installed_tests=false
19
20 meson compile -C build -j ${JOBS:-1}
21 DESTDIR=$PKG meson install -C build
22 }
|