mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
73a74607c7
removed patches as well.
29 lines
670 B
Plaintext
29 lines
670 B
Plaintext
# Description: Xfce's session manager
|
|
# URL: https://www.xfce.org
|
|
# 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
|
|
# TODO: check/verify deps
|
|
|
|
name=xfce4-session
|
|
version=4.18.4
|
|
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 \
|
|
--disable-nls \
|
|
--disable-debug \
|
|
--disable-gtk-doc \
|
|
--enable-gtk-doc-html=no
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|