@@ -6,7 +6,8 @@ name: Osdag
66version : 2026.02.0.0
77uninstall_name : ${NAME}
88company : Osdag, FOSSEE
9- installer_type : exe
9+ installer_type : exe # [win]
10+ installer_type : sh # [linux]
1011
1112icon_image : Osdag.ico
1213welcome_text : |
@@ -15,12 +16,14 @@ welcome_text: |
1516
1617license_file : ..\license.txt
1718extra_files :
18- - post_install.bat
19- - pre_uninstall.bat
20- - launch_osdag.vbs
19+ - post_install.bat # [win]
20+ - pre_uninstall.bat # [win]
21+ - launch_osdag.vbs # [win]
22+ - post_install.sh # [linux]
23+ - pre_uninstall.sh # [linux]
2124 - Osdag.ico
22- - create_shortcuts.ps1
23- - remove_shortcuts.ps1
25+ - create_shortcuts.ps1 # [win]
26+ - remove_shortcuts.ps1 # [win]
2427
2528
2629
@@ -36,15 +39,19 @@ initialize_conda: false
3639register_python : false
3740
3841# Set Default installation location
39- default_prefix : " %LOCALAPPDATA%\\ Osdag"
40- default_prefix_all_users : " %ProgramData%\\ Osdag"
42+ default_prefix : " %LOCALAPPDATA%\\ Osdag" # [win]
43+ default_prefix_all_users : " %ProgramData%\\ Osdag" # [win]
44+ default_prefix : " $HOME/Osdag" # [linux]
45+ # default_prefix_all_users: "/opt/Osdag" # [linux]
4146
4247# if package conda recipe include has Menu\ then use for shortcut creation
4348# menu_packages:
4449# - osdag
4550
46- post_install : post_install.bat
47- pre_uninstall : pre_uninstall.bat
51+ post_install : post_install.bat # [win]
52+ pre_uninstall : pre_uninstall.bat # [win]
53+ post_install : post_install.sh # [linux]
54+ pre_uninstall : pre_uninstall.sh # [linux]
4855
4956post_install_desc : |
5057 This will create shortcuts for Osdag and add it to the start menu. You can also launch Osdag from the desktop shortcut.(Recommended)
0 commit comments