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

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

2
src/xfdesktop/changes.md Normal file
View File

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

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

@ -0,0 +1,16 @@
NAME="xfdesktop"
DESC="Desktop manager for the Xfce Desktop Environment"
VERSION="4.18.1"
FILES=("https://archive.xfce.org/src/xfce/xfdesktop/${VERSION%.*}/xfdesktop-$VERSION.tar.bz2")
HASHES=("e675c2989436dc724fef402d1db0125d")
DEPENDS=("exo" "libwnck3" "libnotify" "startup-notification" "thunar")
PACKAGE() {
tar xf $NAME-$VERSION.tar.bz2
cd $NAME-$VERSION
./configure --prefix=/usr
make && make DESTDIR="$ROOTDIR" install
cd .. && rm -r $NAME-$VERSION
}