mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
31 lines
702 B
Plaintext
31 lines
702 B
Plaintext
# Description: Graphic widgets helpers for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: libxfce4util gtk3 xfconf startup-notification libgtop libepoxy xorg-libsm gobject-introspection hicolor-icon-theme
|
|
|
|
name=libxfce4ui
|
|
version=4.18.4
|
|
release=1
|
|
source=(http://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 \
|
|
--localstatedir=/var \
|
|
--disable-debug \
|
|
--disable-nls \
|
|
--enable-gtk-docs-html=no \
|
|
--with-vendor-info="CRUX"
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|