mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 23:22:20 +01:00
38 lines
910 B
Plaintext
38 lines
910 B
Plaintext
# Description: Xfce's configuration system
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: libxfce4ui exo xfconf glib xorg-libxi xorg-libxrandr xorg-libxcursor libnotify libcanberra libxklavier colord libinput
|
|
|
|
name=xfce4-settings
|
|
version=4.14.0
|
|
release=2
|
|
source=(http://archive.xfce.org/xfce/4.14/src/$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 \
|
|
--disable-static \
|
|
--x-libraries=/usr/share/X11 \
|
|
--disable-gtk2 \
|
|
--enable-gtk3
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|