wok annotate thunderbird-langpack-es_ES/receipt @ rev 6705

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