mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 15:12:20 +01:00
31 lines
643 B
Plaintext
31 lines
643 B
Plaintext
# Description: Graphic widgets helpers for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: xfce4-dev-tools libxfce4util gtk3 xfconf startup-notification glade gtk-doc
|
|
|
|
name=libxfce4ui
|
|
version=4.13.6
|
|
release=1
|
|
source=(https://git.xfce.org/xfce/$name/snapshot/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./autogen.sh \
|
|
--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
|
|
|
|
}
|