graphene: initial import

This commit is contained in:
Danny Rawlins 2020-11-03 14:47:58 +11:00
parent 0c3550e527
commit 91cc0788d3
3 changed files with 66 additions and 0 deletions

43
graphene/.footprint Normal file
View File

@ -0,0 +1,43 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/graphene-1.0/
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-box.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-euler.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-frustum.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-gobject.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-macros.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-matrix.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-plane.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-point.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-point3d.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-quad.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-quaternion.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-ray.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-rect.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-simd4f.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-simd4x4f.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-size.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-sphere.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-triangle.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-types.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-vec2.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-vec3.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-vec4.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-version-macros.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene-version.h
-rw-r--r-- root/root usr/include/graphene-1.0/graphene.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/girepository-1.0/
-rw-r--r-- root/root usr/lib/girepository-1.0/Graphene-1.0.typelib
drwxr-xr-x root/root usr/lib/graphene-1.0/
drwxr-xr-x root/root usr/lib/graphene-1.0/include/
-rw-r--r-- root/root usr/lib/graphene-1.0/include/graphene-config.h
lrwxrwxrwx root/root usr/lib/libgraphene-1.0.so -> libgraphene-1.0.so.0
lrwxrwxrwx root/root usr/lib/libgraphene-1.0.so.0 -> libgraphene-1.0.so.0.1000.2
-rwxr-xr-x root/root usr/lib/libgraphene-1.0.so.0.1000.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/graphene-1.0.pc
-rw-r--r-- root/root usr/lib/pkgconfig/graphene-gobject-1.0.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/gir-1.0/
-rw-r--r-- root/root usr/share/gir-1.0/Graphene-1.0.gir

5
graphene/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/a37iQnpoSsjgMGK4M+zf1p4mw3ZNWnxgTolv1pbTKrtk9NC6UNdNB3m4eDld0zD0DaoSlOh+ws8F+WMraiJJQU=
SHA256 (Pkgfile) = 1b12349b68668c017ebf97f1b8ca18bf7721155bcb3e8a3e76c9fa4e7b3b250c
SHA256 (.footprint) = 5539a50b352745171a8b23b960d9f21c116b43d4ec3ed5c67902facf0842ad3c
SHA256 (graphene-1.10.2.tar.xz) = e97de8208f1aac4f913d4fa71ab73a7034e807186feb2abe55876e51c425a7f6

18
graphene/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# 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
}