mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 15:12:20 +01:00
32 lines
644 B
Plaintext
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
|
|
}
|