xfce4/libxfce4ui/Pkgfile
2019-05-09 14:26:53 +02:00

32 lines
644 B
Plaintext

# Description: Widgets library for the Xfce desktop environment
# URL: https://www.xfce.org
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
# Depends on: libxfce4util gtk3 xfconf startup-notification libglade
name=libxfce4ui
version=4.13.4
release=1
source=()
build() {
if cd "$name-$version" 2> /dev/null; then
git pull
else
git clone https://git.xfce.org/xfce/$name/ "$name-$version"
cd "$name-$version"
fi
./autogen.sh \
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--disable-static \
--disable-gtk-2 \
--enable-introspection=auto \
--enable-vala=auto \
--enable-gladeui2
make
make DESTDIR=$PKG install
}