Skip to content

Commit

Permalink
add resolume arena download examples for both mac and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jgstew committed Aug 1, 2024
1 parent 12dcf73 commit 3a59944
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Resolume/Arena-Mac.download.recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ Description: Downloads the latest version of Arena
Identifier: com.github.jgstew.download.Arena-Mac
Input:
NAME: "Arena"
starting_url: https://www.resolume.com/download/
file_type: dmg
MinimumVersion: "2.3"
Process:
- Processor: URLTextSearcher
Arguments:
# Example URLs:
# - https://www.resolume.com/download/
url: https://www.resolume.com/download/
url: "%starting_url%"
# example: Resolume_Arena_7_21_2_rev_37990_Installer.dmg
re_pattern: 'Resolume_Arena_\d+_\d+_\d+_rev_\d+_Installer.dmg'
re_pattern: 'Resolume_Arena_\d+_\d+_\d+_rev_\d+_Installer.%file_type%'

- Processor: URLTextSearcher
Arguments:
Expand All @@ -25,5 +27,7 @@ Process:
- Processor: com.github.jgstew.SharedProcessors/URLDownloaderPython
Arguments:
url: "https:%match%"
filename: Resolume_Arena_Installer.dmg
filename: Resolume_Arena_Installer.%file_type%
COMPUTE_HASHES: True

- Processor: EndOfCheckPhase
12 changes: 12 additions & 0 deletions Resolume/Arena-Win.download.recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
Description: Downloads the latest version of Arena
# based upon https://github.com/autopkg/moofit-recipes/blob/master/Adobe/RemoteUpdateManager.download.recipe
Identifier: com.github.jgstew.download.Arena-Win
Input:
NAME: "Arena"
starting_url: https://www.resolume.com/download/win
file_type: exe
MinimumVersion: "2.3"
ParentRecipe: com.github.jgstew.download.Arena-Mac
Process:
- Processor: EndOfCheckPhase

0 comments on commit 3a59944

Please sign in to comment.