wok view pidgin-facebookchat/receipt @ rev 5419

ecore: update build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 04 09:45:55 2010 +0200 (2010-05-04)
parents 5e7ead61bce4
children aebcbcedcc6b
line source
1 # SliTaz package receipt.
3 PACKAGE="pidgin-facebookchat"
4 VERSION="1.63"
5 CATEGORY="network"
6 SHORT_DESC="Facebook chat plugin for Pidgin and libpurple messengers."
7 MAINTAINER="mallory@skyrock.com"
8 SOURCE="pidgin-facebookchat"
9 DEPENDS="pidgin zip json-glib"
10 BUILD_DEPENDS="libpurple-dev json-glib-dev"
11 TARBALL="$PACKAGE-source-$VERSION.tar.bz2"
12 WEB_SITE="http://code.google.com/p/pidgin-facebookchat/"
13 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 src=$WOK/$PACKAGE/$PACKAGE
19 cd $src
20 mv Makefile Makefile.orig
21 sed -e 's/i686-pc-linux-gnu-gcc/gcc/' < Makefile.orig > Makefile
22 make libfacebook.so
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib/purple-2
29 cp -a $PACKAGE/libfacebook.so $fs/usr/lib/purple-2
31 # Pidgin icons
32 mkdir -p $fs/usr/share/pixmaps/pidgin/protocols
33 wget http://pidgin-facebookchat.googlecode.com/files/facebook_icons.zip
34 mkdir facebook_icons
35 unzip -o facebook_icons.zip -d $fs/usr/share/pixmaps/pidgin/protocols
36 }
38 # clean commands for Tazwok.
39 clean_wok()
40 {
41 rm -rf $WOK/$PACKAGE/$PACKAGE
42 rm -rf $WOK/$PACKAGE/facebook_icons*
43 }