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

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

View File

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

18
src/xfwm4-themes/pkg.sh Normal file
View File

@ -0,0 +1,18 @@
NAME="xfwm4-themes"
DESC="A set of additional themes for the Xfce window manager"
VERSION="4.10.0"
FILES=("https://archive.xfce.org/src/art/xfwm4-themes/${VERSION%.*}/xfwm4-themes-$VERSION.tar.bz2")
HASHES=("3214d5f00e9703b5e8c9e7c3287d606dedec7285ceb4d5db332e93ada66fd575")
DEPENDS=("xfwm4")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
./configure \
--prefix=/usr \
--sysconfdir=/etc
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}