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

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

View File

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

16
src/xfce4-panel/pkg.sh Normal file
View File

@@ -0,0 +1,16 @@
NAME="xfce4-panel"
DESC="Xfce4 Panel"
VERSION="4.18.4"
FILES=("https://archive.xfce.org/src/xfce/xfce4-panel/4.18/xfce4-panel-$VERSION.tar.bz2")
HASHES=("4e0d462fdeda0efaba79b4845fa49c10")
DEPENDS=("cairo" "exo" "garcon" "libwnck3")
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
}