29 lines
549 B
Plaintext
Raw Normal View History

2019-07-19 01:31:37 +02:00
# Description: Basic Utility library for Xfce
# URL: https://www.xfce.org
# Maintainer: jolupa, jlpavon at me dot com
2019-10-28 09:52:04 +01:00
# Depends on: glib
2019-04-24 17:15:26 +02:00
name=libxfce4util
2019-08-11 18:16:40 +02:00
version=4.14.0
2019-10-28 09:52:04 +01:00
release=2
source=(http://archive.xfce.org/xfce/4.14/src/$name-$version.tar.bz2)
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
2019-10-28 09:52:04 +01:00
./configure \
2019-06-07 00:13:38 +02:00
--prefix=/usr \
--libexecdir=/usr/lib/$name \
2019-06-10 22:57:54 +02:00
--enable-introspection=no \
2019-10-28 09:52:04 +01:00
--enable-vala=no \
--disable-gtk-docs
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
rm -r $PKG/usr/share/gtk-doc
2019-05-20 21:48:17 +02:00
2019-04-24 17:15:26 +02:00
}