wok-stable annotate pidgin-facebookchat/receipt @ rev 5638
linux: fix check_modules.sh and tiny improvment
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri May 28 16:16:06 2010 +0200 (2010-05-28) |
parents | 75834da95be8 |
children | acab66578a36 |
rev | line source |
---|---|
mallory@2108 | 1 # SliTaz package receipt. |
mallory@2108 | 2 |
mallory@2108 | 3 PACKAGE="pidgin-facebookchat" |
mallory@4492 | 4 VERSION="1.63" |
mallory@2108 | 5 CATEGORY="network" |
mallory@2108 | 6 SHORT_DESC="Facebook chat plugin for Pidgin and libpurple messengers." |
mallory@2108 | 7 MAINTAINER="mallory@skyrock.com" |
mallory@2108 | 8 SOURCE="pidgin-facebookchat" |
mallory@3711 | 9 DEPENDS="pidgin zip json-glib" |
mallory@3711 | 10 BUILD_DEPENDS="libpurple-dev json-glib-dev" |
mallory@2108 | 11 TARBALL="$PACKAGE-source-$VERSION.tar.bz2" |
mallory@2108 | 12 WEB_SITE="http://code.google.com/p/pidgin-facebookchat/" |
mallory@3172 | 13 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" |
mallory@2108 | 14 |
mallory@2108 | 15 # Rules to configure and make the package. |
mallory@2108 | 16 compile_rules() |
mallory@2108 | 17 { |
mallory@2108 | 18 src=$WOK/$PACKAGE/$PACKAGE |
mallory@2108 | 19 cd $src |
mallory@2108 | 20 mv Makefile Makefile.orig |
mallory@2108 | 21 sed -e 's/i686-pc-linux-gnu-gcc/gcc/' < Makefile.orig > Makefile |
mallory@2108 | 22 make libfacebook.so |
mallory@2108 | 23 } |
mallory@2108 | 24 |
mallory@2108 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2108 | 26 genpkg_rules() |
mallory@2108 | 27 { |
mallory@2108 | 28 mkdir -p $fs/usr/lib/purple-2 |
mallory@2108 | 29 cp -a $PACKAGE/libfacebook.so $fs/usr/lib/purple-2 |
mallory@2108 | 30 |
mallory@2108 | 31 # Pidgin icons |
mallory@2108 | 32 mkdir -p $fs/usr/share/pixmaps/pidgin/protocols |
pascal@5554 | 33 [ -f $SOURCES_REPOSITORY/facebook_icons.zip ] || \ |
mallory@2108 | 34 wget http://pidgin-facebookchat.googlecode.com/files/facebook_icons.zip |
mallory@2108 | 35 mkdir facebook_icons |
pascal@5554 | 36 unzip -o $SOURCES_REPOSITORY/facebook_icons.zip \ |
pascal@5554 | 37 -d $fs/usr/share/pixmaps/pidgin/protocols |
mallory@2108 | 38 } |
mallory@2108 | 39 |
mallory@2108 | 40 # clean commands for Tazwok. |
mallory@2108 | 41 clean_wok() |
mallory@2108 | 42 { |
mallory@2108 | 43 rm -rf $WOK/$PACKAGE/$PACKAGE |
mallory@2108 | 44 rm -rf $WOK/$PACKAGE/facebook_icons* |
mallory@2108 | 45 } |
mallory@2108 | 46 |