31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
---
|
|
{%- from "androidstudio/map.jinja" import androidstudio with context %}
|
|
androidstudio-archive-extract:
|
|
archive.extracted:
|
|
- name: {{ androidstudio.install_dir }}
|
|
- source: {{ androidstudio.mirror }}/{{ androidstudio.version }}/android-studio-ide-{{ androidstudio.tag }}-linux.tar.gz
|
|
- skip_verify: true
|
|
- archive_format: tar
|
|
- overwrite: true
|
|
- if_missing: {{ androidstudio.release_dir }}/androidstudio-{{ androidstudio.version }}
|
|
- watch:
|
|
- file: androidstudio-link
|
|
- file: androidstudio-shortcut
|
|
|
|
androidstudio-link:
|
|
file.symlink:
|
|
- name: {{ androidstudio.install_dir }}/androidstudio
|
|
- target: {{ androidstudio.release_dir }}/androidstudio-{{ androidstudio.version }}
|
|
- force: true
|
|
|
|
androidstudio-shortcut:
|
|
file.managed:
|
|
- name: /usr/share/applications/jetbrains-studio.desktop
|
|
- source: salt://androidstudio/jetbrains-studio.desktop.j2
|
|
- user: root
|
|
- group: root
|
|
- mode: 644
|
|
- template: jinja
|
|
- onchanges:
|
|
- androidstudio-archive-extract
|