wok view thunderbird-langpack-pt_BR/receipt @ rev 6435

Up: irssi-scripts to 2.0
author Julien Rabier <taziden@slitaz.org>
date Mon Sep 27 18:01:01 2010 +0000 (2010-09-27)
parents e5fea3294985
children 91f0a0a892ae
line source
1 # SliTaz package receipt.
3 PACKAGE="thunderbird-langpack-pt_BR"
4 VERSION="3.1.3"
5 CATEGORY="network"
6 SHORT_DESC="locale for mozilla thunderbird"
7 MAINTAINER="domcox@slitaz.org"
8 DEPENDS="thunderbird"
9 SOURCE="thunderbird"
10 WEB_SITE="http://www.mozillamessaging.com/"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $WOK/$PACKAGE
17 LANG=`echo $PACKAGE | cut -d'-' -f3 | tr '_' '-'`
18 # Get xpi
19 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi"
20 if [ -e $LANG.xpi ]; then
21 echo "Using current langpack ($LANG.xpi)"
22 else
23 echo "Downloading langpack ($LANG.xpi)"
24 wget $WGET_URL
25 fi
26 # Uncompress
27 echo -n "Uncompressing langpack ($LANG.xpi)"
28 LANG_DIR="langpack-$LANG@thunderbird.mozilla.org"
29 mkdir -p $LANG_DIR && unzip -oq $LANG.xpi -d $LANG_DIR
30 status
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 EXTDIR="$fs/usr/lib/$SOURCE-$VERSION/extensions"
37 mkdir -p $EXTDIR
38 cp -a $LANG_DIR $EXTDIR
39 }