opt/graphene/Pkgfile

19 lines
484 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
2021-04-11 07:22:12 +02:00
version=1.10.6
2020-11-03 04:47:58 +01:00
release=1
source=(https://github.com/ebassi/graphene/releases/download/$version/$name-$version.tar.xz)
build() {
meson setup build $name-$version \
--prefix=/usr \
-D installed_tests=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}