29 lines
670 B
Plaintext
Raw Normal View History

2019-07-19 01:31:37 +02:00
# Description: Xfce's session manager
# URL: https://www.xfce.org
2023-07-04 04:55:48 -04:00
# Maintainer: mac-a-r0ni, j at lngn dot net
# Depends on: libwnck-gtk3 libxfce4ui polkit polkit-gnome xfconf desktop-file-utils shared-mime-info gnome-keyring xfce4-screensaver
2023-07-04 04:55:48 -04:00
# TODO: check/verify deps
2019-04-24 17:15:26 +02:00
name=xfce4-session
version=4.18.4
release=1
source=(https://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
2019-04-24 17:15:26 +02:00
build() {
2019-06-01 12:49:24 +02:00
cd $name-$version
2020-03-29 15:59:06 +02:00
./configure \
2020-09-30 14:49:06 +02:00
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
2023-07-04 04:55:48 -04:00
--disable-nls \
2020-09-30 14:49:06 +02:00
--disable-debug \
--disable-gtk-doc \
2023-06-30 08:22:30 -04:00
--enable-gtk-doc-html=no
2019-05-11 19:09:44 +02:00
make
make DESTDIR=$PKG install
2019-04-24 17:15:26 +02:00
}