mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 02:42:19 +01:00
38 lines
928 B
Plaintext
38 lines
928 B
Plaintext
# Description: Xfce's configuration system
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: colord exo garcon gnome-icon-theme libcanberra libnotify libxfce4windowing libxklavier
|
|
|
|
name=xfce4-session
|
|
version=4.20.0
|
|
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-gtk-doc \
|
|
--enable-upower-glib \
|
|
--enable-libnotify \
|
|
--enable-xcursor \
|
|
--enable-libxklavier \
|
|
--enable-pluggable-dialogs \
|
|
--enable-sound-settings \
|
|
--enable-colord \
|
|
--enable-xrandr \
|
|
--enable-gio-unix \
|
|
--x-libraries=/usr/share/X11
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
|
|
rm -r $PKG/usr/share/locale
|
|
|
|
}
|