Update Bluej, Greenfoot. Arduino2 Appimage, Slicer Appimage
This commit is contained in:
parent
05a62f8582
commit
58fd458616
11 changed files with 281 additions and 9 deletions
|
@ -54,6 +54,68 @@
|
|||
owner: root
|
||||
group: root
|
||||
|
||||
########
|
||||
# Arduino2 AppImage
|
||||
#
|
||||
- name: Make sure target dir exists
|
||||
ansible.builtin.file:
|
||||
path: /opt/appimages/arduino2/
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0755'
|
||||
|
||||
- name: Download Arduino2 AppImage from Cache
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ mirror_appimage }}/ArduinoIDE2.AppImage"
|
||||
dest: /opt/appimages/arduino2/ArduinoIDE2.AppImage
|
||||
mode: '0755'
|
||||
|
||||
- name: Copy desktop arduino2 starter file to target
|
||||
copy:
|
||||
src: files/qg.appimage.ArduinoIDE2.desktop
|
||||
dest: /usr/share/applications/qg.appimage.ArduinoIDE2.desktop
|
||||
mode: '0644'
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
|
||||
########
|
||||
# Prusa Slicer AppImage
|
||||
#
|
||||
- name: Make sure target dir exists
|
||||
ansible.builtin.file:
|
||||
path: /opt/appimages/prusaslicer/
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0755'
|
||||
|
||||
- name: Download PrusaSlicer AppImage from Cache
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ mirror_appimage }}/PrusaSlicer.AppImage"
|
||||
dest: /opt/appimages/prusaslicer/PrusaSlicer.AppImage
|
||||
mode: '0755'
|
||||
|
||||
- name: Copy desktop PrusaSlicer starter file to target
|
||||
copy:
|
||||
src: files/qg.appimage.PrusaSlicer.desktop
|
||||
dest: /usr/share/applications/qg.appimage.PrusaSlicer.desktop
|
||||
mode: '0644'
|
||||
owner: root
|
||||
|
||||
- name: Copy desktop Prusaslicer icon file to target
|
||||
copy:
|
||||
src: files/prusaslicer.png
|
||||
dest: /usr/share/icons/prusaslicer.png
|
||||
mode: '0644'
|
||||
owner: root
|
||||
group: root
|
||||
group: root
|
||||
|
||||
|
||||
########
|
||||
# Logseq AppImage
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue