mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-24 07:32:19 +01:00
27 lines
491 B
Plaintext
27 lines
491 B
Plaintext
# Description: Basic Utility library for Xfce
|
|
# URL: https://www.xfce.org
|
|
# Maintainer: jolupa <jolupameister(at)gmail[dot](com)
|
|
# Depends on: glib
|
|
|
|
name=libxfce4util
|
|
version=4.12.1
|
|
release=1
|
|
source=(http://archive.xfce.org/xfce/${version%.*}/src/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--enable-introspection=auto \
|
|
--enable-vala=auto
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|