wok view emesene/receipt @ rev 3834

Add: stoqdrivers (0.9.8)
author Claudinei Pereira <claudinei@slitaz.org>
date Fri Aug 07 00:02:50 2009 +0000 (2009-08-07)
parents 1794ce625358
children fd0572c5479e
line source
1 # SliTaz package receipt.
3 PACKAGE="emesene"
4 VERSION="1.0.1"
5 CATEGORY="network"
6 SHORT_DESC="Instant messaging client for Windows Live Messenger (tm) network."
7 MAINTAINER="rocky@slitaz.org"
8 DEPENDS="python pygtk pycairo python-pysqlite"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.emesene.org"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 while read file; do
18 [ -f done.$file ] && continue
19 echo "Apply $file..."
20 patch -p1 < ../stuff/$file || return 1
21 touch done.$file
22 done <<EOT
23 slitaz-openbox.patch
24 EOT
25 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin \
32 $fs/usr/share/emesene \
33 $fs/usr/share/pixmaps \
34 $fs/usr/share/applications
36 cp stuff/emesene $fs/usr/bin
37 cp -a $src/* $fs/usr/share/emesene
38 cp $fs/usr/share/emesene/misc/emesene.png $fs/usr/share/pixmaps
39 cp $fs/usr/share/emesene/misc/emesene.desktop $fs/usr/share/applications
41 rm -rf $fs/usr/share/emesene/misc
42 rm -rf $fs/usr/share/emesene/po
43 rm -rf $fs/usr/share/emesene/doc
44 }