wok view xchat/receipt @ rev 2255

Add squirrelmail-msg_flags
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 15 22:52:03 2009 +0000 (2009-02-15)
parents
children 917290e1ad30
line source
1 # SliTaz package receipt.
3 PACKAGE="xchat"
4 VERSION="2.8.6"
5 CATEGORY="network"
6 SHORT_DESC="IRC client using GTK+"
7 MAINTAINER="fabrice.thiroux@free.fr"
8 DEPENDS="gtk+ dbus libsexy libnotify openssl gettext"
9 BUILD_DEPENDS="gtk+-dev dbus-dev libsexy-dev libnotify-dev openssl"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xchat.org/"
12 WGET_URL="http://www.xchat.org/files/source/2.8/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -p1 -i ../stuff/xc286-smallfixes.diff
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS
21 make
22 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/share
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/applications $fs/usr/share
32 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
33 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
34 }