mozilla-xulrunner193/create-tar.sh
changeset 99 e7df24b73a40
parent 97 ee36c2f92f55
child 100 f224b7faa82f
--- a/mozilla-xulrunner193/create-tar.sh	Tue Jul 20 09:10:06 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-BRANCH="mozilla-central"
-RELEASE_TAG="default"
-VERSION="2.0b"
-
-# mozilla
-hg clone http://hg.mozilla.org/$BRANCH mozilla
-pushd mozilla
-[ "$RELEASE_TAG" == "default" ] || 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/l10n-central/$locale l10n/$locale
-      [ "$RELEASE_TAG" == "default" ] || hg -R l10n/$locale up -C -r $RELEASE_TAG
-      ;;
-  esac
-done
-tar cjf l10n-$VERSION.tar.bz2 --exclude=.hgtags --exclude=.hgignore --exclude=.hg l10n
-