Advertisement
CombinE_

Untitled

Jul 30th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. ##############################################################################
  2. # Core Configuration
  3. #
  4. # Basic settings that should be changed by all projects.
  5. ##############################################################################
  6.  
  7. # The id of the mod packaged by this project.
  8. # This must exist as a directory in the mods directory.
  9. MOD_ID="mw"
  10.  
  11. # The OpenRA engine version to use for this project.
  12. ENGINE_VERSION="9d84f4a"
  13.  
  14. # Enable this to make the default OpenRA mods available for use in your mod.yaml
  15. # Packages list (via $mod references). Accepts values "True" or "False".
  16. # WARNING: This setting is provided to simplify early project development,
  17. # and must be disabled before you can package installers for your project!
  18. INCLUDE_DEFAULT_MODS="False"
  19.  
  20. ##############################################################################
  21. # Packaging Configuration
  22. #
  23. # Settings controlling the creation of installers.
  24. ##############################################################################
  25.  
  26. # The prefix used for the installer filenames.
  27. # - Windows installers will be named as {PACKAGING_INSTALLER_NAME}-{TAG}.exe
  28. # - macOS installers will be named as {PACKAGING_INSTALLER_NAME}-{TAG}.zip
  29. PACKAGING_INSTALLER_NAME="mw"
  30.  
  31. # The human-readable name for this project.
  32. # This is used in:
  33. # - Crash dialogs (all platforms)
  34. # - macOS .app bundle name
  35. # - macOS menu bar
  36. # - macOS "About" window
  37. # - Windows installer
  38. # - Windows start menu
  39. # - Windows desktop shortcut
  40. # - Windows "Programs and Features" list
  41. PACKAGING_DISPLAY_NAME="mw"
  42.  
  43. # The URL for the project homepage.
  44. # This is used in:
  45. # - Windows "Add/Remove Programs" list
  46. PACKAGING_WEBSITE_URL="http://openra.net"
  47.  
  48. # The URL that is opened when a player presses the "FAQ" button in the crash dialog.
  49. PACKAGING_FAQ_URL="http://wiki.openra.net/FAQ"
  50.  
  51. # The human-readable project authors.
  52. # This is used in:
  53. # - Windows "Add/Remove Programs" list
  54. PACKAGING_AUTHORS="CombinE Flamewh33l"
  55.  
  56. # The git tag to use for the macOS Launcher files.
  57. PACKAGING_OSX_LAUNCHER_TAG="osx-launcher-20170708"
  58.  
  59. # Filename to use for the launcher executable on Windows.
  60. PACKAGING_WINDOWS_LAUNCHER_NAME="Medieval Warfare"
  61.  
  62. # The name of the Windows Program Files directory to install the project files to.
  63. PACKAGING_WINDOWS_INSTALL_DIR_NAME="OpenRA Medieval Warfare"
  64.  
  65. # The key prefix used for Windows registry metadata.
  66. # This should not contain spaces or special characters.
  67. PACKAGING_WINDOWS_REGISTRY_KEY="OpenRAMedievalWarfare"
  68.  
  69. ##############################################################################
  70. # Advanced Configuration
  71. #
  72. # Most projects will not need to modify these
  73. ##############################################################################
  74.  
  75. # Automatic engine managment will treat the OpenRA engine files like a read-only dependency.
  76. # Disable this if you would like to modify or manager your own engine files.
  77. AUTOMATIC_ENGINE_MANAGEMENT="True"
  78.  
  79. # The URL to download the engine files from when AUTOMATIC_ENGINE_MANAGEMENT is enabled.
  80. AUTOMATIC_ENGINE_SOURCE="https://github.com/OpenRA/OpenRA/archive/${ENGINE_VERSION}.zip"
  81.  
  82. # Temporary file/directory names used by automatic engine management.
  83. AUTOMATIC_ENGINE_EXTRACT_DIRECTORY="./engine_temp"
  84. AUTOMATIC_ENGINE_TEMP_ARCHIVE_NAME="engine.zip"
  85. ENGINE_DIRECTORY="./engine"
  86.  
  87. # The url to download the OpenRA macOS launcher files.
  88. PACKAGING_OSX_LAUNCHER_SOURCE="https://github.com/OpenRA/OpenRALauncherOSX/releases/download/${PACKAGING_OSX_LAUNCHER_TAG}/launcher.zip"
  89.  
  90. # Temporary file name used when downloading the OpenRA macOS launcher files.
  91. PACKAGING_OSX_LAUNCHER_TEMP_ARCHIVE_NAME="launcher.zip"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement