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

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

View File

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

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

@@ -0,0 +1,17 @@
NAME="xcb-util-image"
DESC="Additional extensions to the XCB library"
VERSION="0.4.1"
FILES=("https://xcb.freedesktop.org/dist/xcb-util-image-$VERSION.tar.xz")
HASHES=("a67bfac2eff696170259ef1f5ce1b611")
DEPENDS=("libxcb" "xcb-util")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --disable-static
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf $NAME-$VERSION
}