wok-next annotate thunderbird-langpack-pt_PT/receipt @ rev 7380
Up: bluez to 4.80.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Nov 25 16:43:11 2010 +0000 (2010-11-25) |
parents | 6f3bf60ef747 |
children | 73919ebf2a75 |
rev | line source |
---|---|
domcox@6081 | 1 # SliTaz package receipt. |
domcox@6081 | 2 |
pascal@6088 | 3 PACKAGE="thunderbird-langpack-pt_PT" |
slaxemulator@6981 | 4 VERSION="3.1.6" |
domcox@6081 | 5 CATEGORY="network" |
domcox@6081 | 6 SHORT_DESC="locale for mozilla thunderbird" |
domcox@6081 | 7 MAINTAINER="domcox@slitaz.org" |
domcox@6081 | 8 DEPENDS="thunderbird" |
domcox@6081 | 9 SOURCE="thunderbird" |
pascal@6409 | 10 WEB_SITE="http://www.mozillamessaging.com/" |
domcox@6081 | 11 |
domcox@6081 | 12 # Rules to configure and make the package. |
domcox@6081 | 13 compile_rules() |
domcox@6081 | 14 { |
domcox@6081 | 15 cd $WOK/$PACKAGE |
domcox@6134 | 16 LANG=`echo $PACKAGE | cut -d'-' -f3 | tr '_' '-'` |
domcox@6081 | 17 # Get xpi |
domcox@6081 | 18 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$VERSION/linux-i686/xpi/$LANG.xpi" |
domcox@6081 | 19 if [ -e $LANG.xpi ]; then |
domcox@6081 | 20 echo "Using current langpack ($LANG.xpi)" |
domcox@6081 | 21 else |
domcox@6081 | 22 echo "Downloading langpack ($LANG.xpi)" |
domcox@6081 | 23 wget $WGET_URL |
domcox@6081 | 24 fi |
domcox@6081 | 25 # Uncompress |
domcox@6081 | 26 echo -n "Uncompressing langpack ($LANG.xpi)" |
domcox@6081 | 27 LANG_DIR="langpack-$LANG@thunderbird.mozilla.org" |
domcox@6081 | 28 mkdir -p $LANG_DIR && unzip -oq $LANG.xpi -d $LANG_DIR |
domcox@6081 | 29 status |
domcox@6081 | 30 } |
domcox@6081 | 31 |
domcox@6081 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@6081 | 33 genpkg_rules() |
domcox@6081 | 34 { |
domcox@6081 | 35 EXTDIR="$fs/usr/lib/$SOURCE-$VERSION/extensions" |
domcox@6081 | 36 mkdir -p $EXTDIR |
domcox@6081 | 37 cp -a $LANG_DIR $EXTDIR |
domcox@6081 | 38 } |