mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
38 lines
828 B
Plaintext
38 lines
828 B
Plaintext
# Description: Xfce's configuration system
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: libxfce4ui exo xfconf dbus-glib libwnck-gtk3 xorg-libxi xorg-libxrandr xorg-libxcursor libnotify libxklavier
|
|
|
|
name=xfce4-settings
|
|
version=4.13.6
|
|
release=5
|
|
source=(https://git.xfce.org/xfce/$name/snapshot/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./autogen.sh \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
--enable-upower-glib \
|
|
--enable-libnotify \
|
|
--enable-gio-unix \
|
|
--enable-xcursor \
|
|
--enable-libxklavier \
|
|
--enable-pluggable-dialogs \
|
|
--enable-sound-settings \
|
|
--disable-gtk2 \
|
|
--enable-gtk3
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
|
|
}
|