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

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

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

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

24
src/clutter/pkg.sh Normal file
View File

@@ -0,0 +1,24 @@
NAME="clutter"
DESC="Open source software library used for creating fast, visually rich and animated graphical user interfaces"
VERSION="1.26.4"
FILES=("https://download.gnome.org/sources/clutter/1.26/clutter-$VERSION.tar.xz")
HASHES=("624dd776a5159de0267587b1df6b97b2")
DEPENDS=(
"at-spi2-core" "cogl" "json-glib" "gobject-introspection"
"gtk3" "libgudev" "libinput" "libxkbcommon"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-egl-backend \
--enable-evdev-input \
--enable-wayland-backend \
--enable-wayland-compositor
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -rf $NAME-$VERSION
}