30 lines
573 B
Plaintext
Raw Normal View History

2019-04-30 02:46:22 +02:00
# Description: Basic Utility library for Xfce
# URL: https://www.xfce.org
2019-06-07 00:13:38 +02:00
# Maintainer: jolupa, jlpavon at me dot com
2019-06-05 23:17:10 +02:00
# Depends on: xfce4-dev-tools glib
2019-04-24 17:15:26 +02:00
name=libxfce4util
2019-05-18 12:27:47 +02:00
version=4.13.3
2019-06-07 00:13:38 +02:00
release=4
source=(http://git.xfce.org/xfce/$name/snapshot/$name-$version.tar.gz)
2019-04-24 17:15:26 +02:00
build() {
2019-05-11 19:09:44 +02:00
cd $name-$version
2019-04-30 02:46:22 +02:00
./autogen.sh \
2019-06-07 00:13:38 +02:00
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--enable-introspection=auto \
--enable-vala=no \
--disable-gtk-doc \
--disable-gtk-doc-html \
--disable-gtk-doc-pdf
2019-04-30 02:46:22 +02:00
make
make DESTDIR=$PKG install
2019-05-20 21:48:17 +02:00
#rm -r $PKG/usr/share/locale
2019-04-24 17:15:26 +02:00
}