Skip to content

Commit

Permalink
Organize construct.yaml into installer and payload parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrclary committed Dec 15, 2024
1 parent b2cbc7d commit 9a2d1be
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions installers-conda/resources/construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
{% set CERT_ID = environ["CERT_ID"] %} # [osx]
{% set WIN_SIGN_CERT = environ["WIN_SIGN_CERT"] %}

# ---- Installer parameters

name: Spyder
company: Spyder-IDE
reverse_domain_identifier: org.spyder-ide.Spyder
Expand All @@ -26,8 +28,20 @@ header_image: {{ BUILD_PATH }}header_img_win.png # [win]
icon_image: {{ environ["REPO_PATH"] }}\img_src\spyder.ico # [win]
check_path_length: false # [win]

conclusion_text: '' # [osx]
readme_text: '' # [osx]
pkg_name: spyder-6 # [osx]
default_location_pkg: Library # [osx]
welcome_image: {{ BUILD_PATH }}welcome_img_mac.png # [osx]
welcome_file: {{ BUILD_PATH }}osx_pkg_welcome.rtf # [osx]
progress_notifications: true # [osx]

signing_identity_name: {{ CERT_ID }} # [osx]
notarization_identity_name: {{ CERT_ID }} # [osx]
signing_certificate: {{ WIN_SIGN_CERT }} # [win]

# ---- Payload parameters

default_prefix: $HOME/.local/spyder-6 # [linux or osx]
default_prefix: '%LOCALAPPDATA%/spyder-6' # [win]
default_prefix_domain_user: '%LOCALAPPDATA%/spyder-6' # [win]
Expand All @@ -39,17 +53,6 @@ pre_install: {{ RESOURCE_PATH }}pre-install.bat # [win]
post_install: {{ RESOURCE_PATH }}post-install.sh # [linux or osx]
post_install: {{ RESOURCE_PATH }}post-install.bat # [win]

conclusion_text: '' # [osx]
readme_text: '' # [osx]
pkg_name: spyder-6 # [osx]
default_location_pkg: Library # [osx]
welcome_image: {{ BUILD_PATH }}welcome_img_mac.png # [osx]
welcome_file: {{ BUILD_PATH }}osx_pkg_welcome.rtf # [osx]

signing_identity_name: {{ CERT_ID }} # [osx]
notarization_identity_name: {{ CERT_ID }} # [osx]
signing_certificate: {{ WIN_SIGN_CERT }} # [win]

extra_files:
- {{ RESOURCE_PATH }}bundle_readme.md: README.txt
- {{ RESOURCE_PATH }}condarc: .condarc
Expand Down

0 comments on commit 9a2d1be

Please sign in to comment.