xfce4/xfconf/Pkgfile
2020-09-30 17:43:21 +02:00

32 lines
612 B
Plaintext

# Description: D-Bus based configuration storage system
# URL: https://www.xfce.org
# Maintainer: jolupa, jlpavon at me dot com
# Depends on: libxfce4util
name=xfconf
version=4.15.0
release=2
source=(http://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2 configure)
build() {
cd $name-$version
cp $SRC/configure .
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib \
--enable-shared \
--disable-debug \
--with-bash-completion-dir=no
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/locale
rm -r $PKG/usr/share/gtk-doc
}