wok view xfconf/receipt @ rev 4195

asterisk: fix lua module
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 23 20:44:27 2009 +0200 (2009-09-23)
parents
children cd075316eefa
line source
1 # SliTaz package receipt.
3 PACKAGE="xfconf"
4 VERSION="4.6.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce Copnfiguration Utility"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gtk+ libxfce4util"
9 BUILD_DEPENDS="gtk+-dev libxfce4util-dev dbus-dev dbus-glib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org"
12 WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL
13 http://www.tx-us.xfce.org/archive/xfce-$VERSION/src/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr \
29 $fs/usr/lib \
30 $fs/usr/share/locale
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/libexec $fs/usr
36 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
37 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
39 strip -s $fs/usr/libexec/*
40 }