wok annotate firefox-langpack-fr/receipt @ rev 25031

Add fatcat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 20 09:25:51 2022 +0000 (2022-05-20)
parents 7042a09beaeb
children 41a539cfe5f8
rev   line source
lufeng369@7487 1 # SliTaz package receipt.
lufeng369@7487 2
lufeng369@7487 3 PACKAGE="firefox-langpack-fr"
domcox@15540 4 VERSION="17.0.11esr"
al@19175 5 CATEGORY="localization"
domcox@14213 6 SHORT_DESC="French Language Package for firefox"
pascal@16047 7 MAINTAINER="lufeng369@slitaz.org"
pascal@15215 8 LICENSE="MPL2"
lufeng369@7487 9 WEB_SITE="http://www.mozilla.com"
domcox@14213 10 LANG=$(echo $PACKAGE | cut -d'-' -f3 | tr '_' '-')
slaxemulator@7581 11 LANG_DIR="langpack-$LANG@firefox.mozilla.org"
slaxemulator@11291 12 TARBALL="$PACKAGE-$VERSION.zip"
domcox@14213 13 WGET_URL="ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$VERSION/linux-i686/xpi/$LANG.xpi"
slaxemulator@7493 14
pascal@15215 15 DEPENDS="firefox"
pascal@15215 16
pascal@24425 17 # What is the latest version available today?
pascal@24425 18 current_version()
pascal@24425 19 {
pascal@24425 20 wget -O - http://ftp.mozilla.org/pub/firefox/releases/ 2>/dev/null | \
pascal@24425 21 sed '/firefox\/releases\/[0-9]/!d;s|.*firefox/releases/\([^/]*\)/.*|\1|' | sort -Vr | sed q
pascal@24425 22 }
pascal@24425 23
lufeng369@7487 24 # Rules to gen a SliTaz package suitable for Tazpkg.
lufeng369@7487 25 genpkg_rules()
lufeng369@7487 26 {
domcox@14213 27 EXTDIR="$fs/usr/lib/firefox-$VERSION/extensions/$LANG_DIR"
slaxemulator@7527 28 mkdir -p $EXTDIR
gokhlayeh@8553 29 cp -a $src/* $EXTDIR
lufeng369@7487 30 }