graphene-32: initial import

This commit is contained in:
Danny Rawlins 2020-11-07 19:37:09 +11:00
parent d6b3344eb3
commit fe78af175c
4 changed files with 39 additions and 0 deletions

0
graphene-32/.32bit Normal file
View File

11
graphene-32/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/
drwxr-xr-x root/root usr/lib32/graphene-1.0/
drwxr-xr-x root/root usr/lib32/graphene-1.0/include/
-rw-r--r-- root/root usr/lib32/graphene-1.0/include/graphene-config.h
lrwxrwxrwx root/root usr/lib32/libgraphene-1.0.so -> libgraphene-1.0.so.0
lrwxrwxrwx root/root usr/lib32/libgraphene-1.0.so.0 -> libgraphene-1.0.so.0.1000.2
-rwxr-xr-x root/root usr/lib32/libgraphene-1.0.so.0.1000.2
drwxr-xr-x root/root usr/lib32/pkgconfig/
-rw-r--r-- root/root usr/lib32/pkgconfig/graphene-1.0.pc
-rw-r--r-- root/root usr/lib32/pkgconfig/graphene-gobject-1.0.pc

5
graphene-32/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/compat-32.pub
RWSwxGo/zH7eXQYmXEpskZBb2CDzbjgBawCHT45F+KCLX6hdkUqMVUjQd2jvGm/hqLx0G/yPc5CbLKN7hEiJNNrXcop7/evYXwY=
SHA256 (Pkgfile) = 009a93899c27bf4c6e327a25640fb6053aa1bac43644dbd63a647b259fc04e25
SHA256 (.footprint) = 9e38cbd78df301ad5e4691b16126d71dcae1c6971cb2afb1384fda966b511182
SHA256 (graphene-1.10.2.tar.xz) = e97de8208f1aac4f913d4fa71ab73a7034e807186feb2abe55876e51c425a7f6

23
graphene-32/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: A thin layer of graphic data types.
# URL: https://ebassi.github.io/graphene/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: glib-32 graphene
name=graphene-32
version=1.10.2
release=1
source=(https://github.com/ebassi/graphene/releases/download/$version/graphene-$version.tar.xz)
build() {
meson setup build graphene-$version \
--prefix=/usr \
--libdir=/usr/lib32 \
--buildtype=plain \
-D introspection=false \
-D installed_tests=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
rm -r $PKG/usr/include
}