first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/graphene/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/graphene/changes.md Normal file
View File

@@ -0,0 +1,2 @@
# 1.10.8
First version

19
src/graphene/pkg.sh Normal file
View File

@@ -0,0 +1,19 @@
NAME="graphene"
DESC="Thin layer of types for graphics libraries"
VERSION="1.10.8"
FILES=("https://download.gnome.org/sources/graphene/1.10/graphene-$VERSION.tar.xz")
HASHES=("169e3c507b5a5c26e9af492412070b81")
DEPENDS=("gobject-introspection" "glib")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
mkdir build &&
cd build &&
meson setup --prefix=/usr --buildtype=release ..
ninja && DESTDIR="$ROOTDIR" ninja install
cd ../.. && rm -rf $NAME-$VERSION
}