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

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

2
src/xcb-proto/changes.md Normal file
View File

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

17
src/xcb-proto/pkg.sh Normal file
View File

@ -0,0 +1,17 @@
NAME="xcb-proto"
DESC="XML-XCB protocol descriptions that libxcb uses to generate the majority of its code and API"
VERSION="1.16.0"
FILES=("https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-$VERSION.tar.xz")
HASHES=("92081b0faafd93f8262463c69829a482")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
PYTHON=python3 ./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static
make DESTDIR=$ROOTDIR install
cd .. && rm -rf $NAME-$VERSION
}