mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 22:52:20 +01:00
32 lines
612 B
Plaintext
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
|
|
|
|
}
|