diff options
author | Danny Rawlins <contact@romster.me> | 2020-11-07 19:37:09 +1100 |
---|---|---|
committer | Danny Rawlins <contact@romster.me> | 2020-11-07 19:37:09 +1100 |
commit | fe78af175c861142896feb115efea4f319c3f57f (patch) | |
tree | 7ead40b08ef974d737e51d82929b6e71a026c9a5 /graphene-32 | |
parent | d6b3344eb35e42ee72869fa9dbc628b9e48c00d9 (diff) | |
download | compat-32-fe78af175c861142896feb115efea4f319c3f57f.tar.gz compat-32-fe78af175c861142896feb115efea4f319c3f57f.tar.xz |
graphene-32: initial import
Diffstat (limited to 'graphene-32')
-rw-r--r-- | graphene-32/.32bit | 0 | ||||
-rw-r--r-- | graphene-32/.footprint | 11 | ||||
-rw-r--r-- | graphene-32/.signature | 5 | ||||
-rw-r--r-- | graphene-32/Pkgfile | 23 |
4 files changed, 39 insertions, 0 deletions
diff --git a/graphene-32/.32bit b/graphene-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/graphene-32/.32bit diff --git a/graphene-32/.footprint b/graphene-32/.footprint new file mode 100644 index 00000000..fca516f0 --- /dev/null +++ b/graphene-32/.footprint @@ -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 diff --git a/graphene-32/.signature b/graphene-32/.signature new file mode 100644 index 00000000..e8d8514d --- /dev/null +++ b/graphene-32/.signature @@ -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 diff --git a/graphene-32/Pkgfile b/graphene-32/Pkgfile new file mode 100644 index 00000000..d92d3e65 --- /dev/null +++ b/graphene-32/Pkgfile @@ -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 +} |