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

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

View File

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

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

@@ -0,0 +1,17 @@
NAME="xcb-util-xrm"
DESC="Libraries which provide helper functions for the X resource manager"
VERSION="1.3"
FILES=("https://github.com/Airblader/xcb-util-xrm/releases/download/v$VERSION/xcb-util-xrm-$VERSION.tar.gz")
HASHES=("0129f74c327ae65e2f4ad4002f300b4f02c9aff78c00997f1f1c5a430f922f34")
DEPENDS=("xcb-util")
PACKAGE() {
tar xf $NAME-$VERSION.tar.gz
cd $NAME-$VERSION
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -r $NAME-$VERSION
}