| 
									
										
										
										
											2022-07-29 12:52:40 +02:00
										 |  |  | #!/usr/bin/env sh
 | 
					
						
							| 
									
										
										
										
											2021-11-03 17:55:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | set -euo pipefail | 
					
						
							|  |  |  | IFS=$'\n\t' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Download and install the Vulkan SDK. | 
					
						
							| 
									
										
										
										
											2024-10-08 19:37:09 +03:00
										 |  |  | curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.zip" -o /tmp/vulkan-sdk.zip | 
					
						
							|  |  |  | unzip /tmp/vulkan-sdk.zip -d /tmp | 
					
						
							|  |  |  | /tmp/InstallVulkan.app/Contents/MacOS/InstallVulkan \
 | 
					
						
							| 
									
										
										
										
											2021-11-03 17:55:43 +01:00
										 |  |  |     --accept-licenses --default-answer --confirm-command install | 
					
						
							| 
									
										
										
										
											2023-01-03 11:16:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-08 19:37:09 +03:00
										 |  |  | rm -rf /tmp/InstallVulkan.app | 
					
						
							|  |  |  | rm -f /tmp/vulkan-sdk.zip | 
					
						
							| 
									
										
										
										
											2021-11-03 17:55:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | echo 'Vulkan SDK installed successfully! You can now build Godot by running "scons".' |