---
metadata:
    name: "Beet Mover Manifest"
    description: "Maps artifact locations to s3 key names for the en-US locale"
    owner: "release@mozilla.com"

mapping:
{% for locale in locales %}
  {{ locale }}:
  {% if platform == "win32" %}
    package:
      artifact: {{ artifact_base_url }}/target.zip
      s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.zip
  {% endif %}

  {% if platform == "win64" %}
    package:
      artifact: {{ artifact_base_url }}/target.zip
      s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.zip
  {% endif %}

  {% if platform == "linux-i686" %}
    package:
      artifact: {{ artifact_base_url }}/target.tar.bz2
      s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.tar.bz2
  {% endif %}

  {% if platform == "linux-x86_64" %}
    package:
      artifact: {{ artifact_base_url }}/target.tar.bz2
      s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.tar.bz2
  {% endif %}

  {% if platform == "mac" %}
  # nothing to see here
  {% endif %}

{% endfor %}
