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/cogl/.gitignore vendored Normal file
View File

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

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

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

23
src/cogl/pkg.sh Normal file
View File

@ -0,0 +1,23 @@
NAME="cogl"
DESC="Modern 3D graphics API"
VERSION="1.22.8"
FILES=("https://download.gnome.org/sources/cogl/1.22/cogl-$VERSION.tar.xz")
HASHES=("7dd8b2e24171ef7399f851cea144b569")
DEPENDS=(
"cairo" "gdk-pixbuf" "glu"
"mesa" "pango" "gobject-introspection"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr \
--enable-gles1 \
--enable-gles2 \
--enable-{kms,wayland,xlib}-egl-platform \
--enable-wayland-egl-server
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -rf $NAME-$VERSION
}