first commit
This commit is contained in:
3
src/cogl/.gitignore
vendored
Normal file
3
src/cogl/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/cogl/changes.md
Normal file
2
src/cogl/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.22.8
|
||||
First version
|
23
src/cogl/pkg.sh
Normal file
23
src/cogl/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user