tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

base.py (857B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 import os
      6 
      7 config = {
      8    "package-name": "firefox",
      9    "installer-tag": "browser/installer/windows/app.tag",
     10    "stub-installer-tag": "browser/installer/windows/stub.tag",
     11    "deb-templates": "browser/installer/linux/app/debian",
     12    "deb-l10n-templates": "browser/installer/linux/langpack/debian",
     13    "rpm-templates": "browser/installer/linux/app/rpm",
     14    "locales-file": "browser/locales/l10n-changesets.json",
     15    "flatpak-templates": "browser/installer/linux/app/flatpak",
     16    "wsx-stub": "browser/installer/windows/msi/installer.wxs",
     17    "fetch-dir": os.environ.get("MOZ_FETCHES_DIR"),
     18    "extensions-dir": "firefox/distribution/extensions",
     19 }