1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Environnement graphique leger et performant (installe tous les paquets et dependances)
# URL: http://www.xfce.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: xorg, xquisite,xfce4-panel,thunar,xfce4-settings,xfce4-session,xfwm4,xfdesktop,xfce4-appfinder,xfce-utils,gtk-xfce-engine,xfwm4-themes,terminal,mousepad,ristretto,desktop-file-utils, pidgin, gvfs, thunar-thumbnailers, lxdm
# Run on: xorg,xquisite,xfce4-panel,thunar,xfce4-settings,xfce4-session,xfwm4,xfdesktop,xfce4-appfinder,xfce-utils,gtk-xfce-engine,xfwm4-themes,terminal,mousepad,ristretto,xfburn,desktop-file-utils,pidgin,gvfs,thunar-thumbnailers,lxdm
name=xfce
version=4.8.1
release=1
source=(XFCE.xinitrc)
build() {
install -D -m644 XFCE.xinitrc $PKG/etc/X11/dm/XFCE.xinitrc
mkdir -p $PKG/etc/qingy/sessions
cat > $PKG/etc/qingy/sessions/XFCE << "EOF"
source /etc/profile
userclientrc=/etc/X11/dm/XFCE.xinitrc /usr/bin/startx.qingy
EOF
chmod 755 $PKG/etc/qingy/sessions/XFCE
}
|