blob: e813895e0a241f34cf49458125c035d2843ab339 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Description: Gestionnaire de sessions de Xfce
# URL: http://www.xfce.org/projects/xfce4-session/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: dbus, libxfce4ui,libxfce4util, libxfcegui4, libwnck, p5-xml-parser,xorg-xauth,xorg-iceauth
# Run on: dbus,libxfce4ui,libxfce4util,libxfcegui4,libwnck,xorg-xauth,xorg-iceauth
name=xfce4-session
version=4.8.0
release=1
source=(http://archive.xfce.org/xfce/4.8/src/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--disable-static \
--disable-gnome \
--enable-final \
--enable-session-screenshots
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}
|