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

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

View File

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

16
src/xcursorgen/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="xcursorgen"
DESC="Create an X cursor file from PNG images"
VERSION="1.0.8"
FILES=("https://www.x.org/pub/individual/app/xcursorgen-$VERSION.tar.xz")
HASHES=("89e81a1c31e4a1fbd0e431425cd733d7")
DEPENDS=("libpng" "libx11" "libxcursor")
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure $XORG_CONFIG
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf $NAME-$VERSION
}