wok view GConf/receipt @ rev 9674

Fixed python-pyxml. The sed way had a error unmatch /. So i'm using the real patch from archlinux.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue May 03 04:53:22 2011 +0000 (2011-05-03)
parents f8a3deafc73a
children 0cb854791327
line source
1 # SliTaz package receipt.
3 PACKAGE="GConf"
4 VERSION="2.32.2"
5 CATEGORY="utilities"
6 SHORT_DESC="A configuration database system."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS="glibc-base glib libgio dbus dbus-glib expat libxml2 zlib \
9 polkit ORBit2 atk cairo gtk+ fontconfig freetype pango pixman libpng \
10 xorg-libX11 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdamage \
11 xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama xorg-libXrender"
12 BUILD_DEPENDS="intltool gettext libcrypto libcomerr3 gobject-introspection-dev"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WEB_SITE="http://projects.gnome.org/gconf/"
15 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
22 ./configure \
23 --sysconfdir=/etc \
24 --libexecdir=/usr/lib/GConf &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib $fs/usr/share
33 cp -a $_pkg/usr/lib/GConf $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/girepository-1.0 $fs/usr/lib
36 rm $fs/usr/lib/GConf/2/*.*a
37 cp -a $_pkg/usr/bin $fs/usr
38 cp -a $_pkg/etc $fs
39 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
40 cp -a $_pkg/usr/share/polkit-1 $fs/usr/share
41 }