mozilla-xulrunner192/create-tar.sh
author Wolfgang Rosenauer <wr@rosenauer.org>
Wed, 21 Sep 2011 12:18:41 +0200
branchmozilla-1.9.2
changeset 330 1c2c7f8923f1
parent 308 a5cece1da91f
child 348 ebdb6a9e0132
permissions -rwxr-xr-x
update to 1.9.2.23/3.6.23 sync dialog.xml in mozilla-kde.patch

#!/bin/bash

RELEASE_TAG="FIREFOX_3_6_23_RELEASE"
VERSION="1.9.2.23"

# mozilla
hg clone http://hg.mozilla.org/releases/mozilla-1.9.2 mozilla
pushd mozilla
hg update -r $RELEASE_TAG
popd
tar cjf xulrunner-source-$VERSION.tar.bz2 --exclude=.hgtags --exclude=.hgignore --exclude=.hg --exclude=CVS mozilla

# l10n
test ! -d l10n && mkdir l10n
for locale in $(awk '{ print $1; }' mozilla/browser/locales/shipped-locales); do
  case $locale in
    ja-JP-mac|en-US)
      ;;
    *)
      hg clone http://hg.mozilla.org/releases/l10n-mozilla-1.9.2/$locale l10n/$locale
      hg -R l10n/$locale up -C -r $RELEASE_TAG
      ;;
  esac
done
tar cjf l10n-$VERSION.tar.bz2 --exclude=.hgtags --exclude=.hgignore --exclude=.hg l10n