mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 18:52:19 +01:00
30 lines
937 B
Plaintext
30 lines
937 B
Plaintext
# Description: Xfce's session manager
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: libxfce4ui p5-xml-parser libwnck-gtk3 glib xorg-iceauth xorg-luit xorg-mkfontscale xorg-sessreg xorg-setxkbmap xorg-x11perf xorg-xauth xorg-xbacklight xorg-xcursorgen xorg-xdpyinfo xorg-xdriinfo xorg-xev xorg-xgamma xorg-xhost xorg-xinput xorg-xkbcomp xorg-xkill xmessage xorg-xmodmap xorg-xprop xorg-xrandr xorg-xrdb xorg-xset xorg-xsetroot xorg-xvinfo xorg-xwininfo
|
|
|
|
name=xfce4-session
|
|
version=4.14.2
|
|
release=1
|
|
source=(https://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--sysconfdir=/etc \
|
|
--enable-polkit \
|
|
--disable-debug \
|
|
--disable-gtk-doc \
|
|
--disable-legacy-sm
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|