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

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

View File

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

16
src/xcursor-themes/pkg.sh Normal file
View File

@ -0,0 +1,16 @@
NAME="xcursor-themes"
DESC="Redglass and whiteglass animated cursor themes"
VERSION="1.0.7"
FILES=("https://www.x.org/pub/individual/data/xcursor-themes-$VERSION.tar.xz")
HASHES=("070993be1f010b09447ea24bab2c9846")
DEPENDS=()
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR=${ROOTDIR} install
cd .. && rm -rf $NAME-$VERSION
}