mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 15:12:20 +01:00
32 lines
652 B
Plaintext
32 lines
652 B
Plaintext
# Description: Graphic widgets helpers for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: libxfce4util gtk3 xfconf startup-notification glade
|
|
|
|
name=libxfce4ui
|
|
version=4.13.5
|
|
release=4
|
|
source=(http://archive.xfce.org/xfce/4.14pre1/src/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-gtk2 \
|
|
--enable-gtk3 \
|
|
--enable-introspection=no \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
#rm -r $PKG/usr/share/locale
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
|
|
}
|