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

Up: dosfstools to 3.0.10.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Sep 17 17:06:33 2010 +0000 (2010-09-17)
parents e7cd64ad6dd0
children 4aef4f201414
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="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 }