# Description: Graphic widgets helpers for Xfce
# URL: https://www.xfce.org
# Maintainer: mac-a-r0ni, j at lngn dot net
# Depends on: gtk3 hicolor-icon-theme libgtop startup-notification xfconf

name=libxfce4ui
version=4.20.0
release=1
source=(http://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2 vendorinfo)

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

	find $PKG/usr/lib/* -name "*.la" -type f|xargs rm -f
	rm -r $PKG/usr/share/gtk-doc
	mkdir -p $PKG/usr/share/xfce4
	cp $SRC/vendorinfo $PKG/usr/share/xfce4/

}