mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
36 lines
895 B
Plaintext
36 lines
895 B
Plaintext
# Description: Xfce's configuration system
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: exo garcon libxfce4ui gnome-icon-theme libcanberra libnotify libxklavier libinput colord xfconf xorg-xf86-input-libinput
|
|
|
|
name=xfce4-settings
|
|
version=4.18.6
|
|
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 \
|
|
--disable-nls \
|
|
--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
|
|
|
|
}
|