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

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

View File

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

17
src/libxcomposite/pkg.sh Normal file
View File

@ -0,0 +1,17 @@
NAME="libxcomposite"
DESC="X11 composite extension library"
VERSION="0.4.6"
FILES=("https://www.x.org/pub/individual/lib/libXcomposite-$VERSION.tar.xz")
HASHES=("af0a5f0abb5b55f8411cd738cf0e5259")
DEPENDS=("libxfixes")
PACKAGE() {
tar xf libXcomposite-$VERSION.tar.xz
cd libXcomposite-$VERSION
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static --docdir=/usr/share/doc/$NAME-$VERSION
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf libXcomposite-$VERSION
}