blob: 071154cbd588d56e1130ada64a822d700cc255ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Backend de configuration de Xfce
# URL: http://wiki.xfce.org/releng/4.6/general-info
# Maintainer: git.xfce.org/xfce/xfconf
# Packager: tyrry33 at gmail dot com
# Depends on: libxfce4util, dbus-glib, gtk, p5-extutils-depends, p5-extutils-pkgconfig, p5-glib
# Run on: libxfce4util,dbus-glib,gtk,p5-glib
name=xfconf
version=4.10.0
release=1
source=(http://archive.xfce.org/xfce/4.10/src/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--disable-static
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
rm $PKG/usr/share/perl5/base/perllocal.pod
}
|