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

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

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

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

21
src/xfce4/pkg.sh Normal file
View File

@ -0,0 +1,21 @@
NAME="xfce4"
DESC="XFCE4 desktop enviroment"
VERSION="1"
FILES=()
HASHES=()
DEPENDS=(
"libxfce4util" "xfconf" "libxfce4ui"
"exo" "garcon" "xfce4-panel"
"thunar" "thunar-volman" "tumbler"
"xfce4-appfinder" "xfce4-power-manager"
"xfce4-settings" "xfdesktop" "xfwm4"
"xfce4-session" "xorg" "xfwm4-themes" "xfce4-notifyd"
"parole" "xfburn" "ristretto" "xfce4-pulseaudio-plugin"
"adwaita-icon-theme"
)
PACKAGE() {
echo This is just a wrapper package, nothing to do
mkdir -pv "$ROOTDIR/var/lib/wrapperpkg"
touch "$ROOTDIR/var/lib/wrapperpkg/mp-xfce4"
}