wok view xfconf/receipt @ rev 5034

tazbb: clean flavor status
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 03 11:58:08 2010 +0100 (2010-03-03)
parents 6b28c0132116
children 1edb05fb96f8
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 dbus-glib"
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 --libexecdir=/usr/lib/$PACKAGE \
22 --mandir=/usr/share/man $CONFIGURE_ARGS && \
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr \
30 $fs/usr/lib \
31 $fs/usr/share/locale
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
37 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
38 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
40 strip -s $fs/usr/lib/$PACKAGE/*
41 }