wok view emesene/receipt @ rev 20255

firefox, thunderbird: try to force i686
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 21:40:37 2018 +0100 (2018-03-13)
parents d1768332cee0
children e3f377fbc5f0
line source
1 # SliTaz package receipt.
3 PACKAGE="emesene"
4 VERSION="1.6"
5 CATEGORY="network"
6 SHORT_DESC="Instant messaging client for Windows Live Messenger (tm) network."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.emesene.org"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="im instant-messaging instant-messenger"
14 DEPENDS="python pygtk pycairo python-pysqlite gst-python"
15 BUILD_DEPENDS="python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 while read file; do
22 [ -f done.$file ] && continue
23 echo "Apply $file..."
24 patch -p1 < $stuff/$file || return 1
25 touch done.$file
26 done <<EOT
27 slitaz-openbox.patch
28 EOT
29 python setup.py build_ext -i || return 1
30 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/bin \
37 $fs/usr/share/emesene \
38 $fs/usr/share/pixmaps \
39 $fs/usr/share/applications
41 cp stuff/emesene $fs/usr/bin
42 cp -a $src/* $fs/usr/share/emesene
43 cp $fs/usr/share/emesene/misc/emesene.png $fs/usr/share/pixmaps
44 cp $fs/usr/share/emesene/misc/emesene.desktop $fs/usr/share/applications
46 rm -rf $fs/usr/share/emesene/misc
47 rm -rf $fs/usr/share/emesene/po
48 rm -rf $fs/usr/share/emesene/libmimic
49 rm -rf $fs/usr/share/emesene/build
50 }