wok-undigest view mate-conf/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mate-conf"
4 VERSION="1.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="MATE Desktop configuration database system."
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://mate-desktop.org"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WGET_URL="http://pub.mate-desktop.org/releases/1.4/$TARBALL"
12 DEPENDS="glib gobject-introspection libxml2 mate-corba dbus dbus-glib gtk+ \
13 polkit expat"
14 BUILD_DEPENDS="autoconf automake libtool gtk-doc mate-common glib-dev \
15 gobject-introspection-dev libxml2-dev mate-corba-dev dbus-dev \
16 dbus-glib-dev gtk+-dev polkit-dev libIDL expat-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./autogen.sh \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 --libexecdir=/usr/lib/MateConf \
26 --enable-defaults-service \
27 --enable-gsettings-backend=no \
28 --without-openldap \
29 $CONFIGURE_ARGS &&
30 make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib $fs/usr/share
37 cp -a $install/etc $fs
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 cp -a $install/usr/lib/MateConf $fs/usr/lib
41 rm -f $fs/usr/lib/MateConf/2/*.*a
42 cp -a $install/usr/share/*-1 $fs/usr/share
43 cp -a $install/usr/share/sgml $fs/usr/share
44 }