19 lines
484 B
Plaintext
19 lines
484 B
Plaintext
# 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
|
|
version=1.10.2
|
|
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
|
|
}
|