27 lines
491 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
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
2019-04-24 17:15:26 +02:00
# Depends on: glib
name=libxfce4util
2019-05-11 19:09:44 +02:00
version=4.12.1
release=1
source=(http://archive.xfce.org/xfce/${version%.*}/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-05-11 19:09:44 +02:00
./configure \
2019-04-30 02:46:22 +02:00
--prefix=/usr \
2019-05-09 14:26:53 +02:00
--libexecdir=/usr/lib/$name \
--enable-introspection=auto \
--enable-vala=auto
2019-04-30 02:46:22 +02:00
make
2019-04-24 17:15:26 +02:00
2019-04-30 02:46:22 +02:00
make DESTDIR=$PKG install
2019-05-11 19:09:44 +02:00
rm -r $PKG/usr/share/gtk-doc
2019-04-24 17:15:26 +02:00
}