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

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

View File

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

20
src/clutter-gst/pkg.sh Normal file
View File

@ -0,0 +1,20 @@
NAME="clutter-gst"
DESC="Integration library for using GStreamer with Clutter"
VERSION="3.0.27"
FILES=("https://download.gnome.org/sources/clutter-gst/3.0/clutter-gst-$VERSION.tar.xz")
HASHES=("2bf9d7ca146c9d71e86c45cd00e9a28e")
DEPENDS=(
"clutter" "gst-plugins-base" "libgudev"
"gobject-introspection" "libxdamage"
"gdk-pixbuf"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -rf $NAME-$VERSION
}