28 lines
642 B
Plaintext
28 lines
642 B
Plaintext
# Description: Xfconf is the configuration storage system for Xfce.
|
|
# URL: http://wiki.xfce.org/releng/4.6/general-info
|
|
# Packager: milisarge@gmail.com
|
|
# Depends on: xfce4-libutil dbus-glib perl-glib
|
|
|
|
_name=xfconf
|
|
|
|
name=xfce4-conf
|
|
version=4.12.0
|
|
release=1
|
|
|
|
source=(http://archive.xfce.org/xfce/${version%.*}/src/${_name}-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd ${_name}-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/xfce4 \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--disable-debug
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
find $PKG -name perllocal.pod -exec rm {} \;
|
|
}
|