-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build macOS app and extend the README.md regarding macOS release (#181)
* Build macOS app and extend the README.md regarding macOS release * chmod u+x for macOS build * use ZIP instead of tar.gz for Windows build * extract local setup into INSTALL.md
- Loading branch information
Showing
7 changed files
with
100 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDisplayName</key> | ||
<string>Tiny World</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.github.mlange42.tiny-world</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.0.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleIconFile</key> | ||
<string>tiny-world.icns</string> | ||
<key>CFBundleExecutable</key> | ||
<string>tiny-world</string> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,8 @@ | |
/save/ | ||
/maps/ | ||
/user/ | ||
|
||
# macOS binary | ||
./tiny-world | ||
|
||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## Installation Guide | ||
|
||
### Precompiled binaries | ||
|
||
You can download precompiled binaries for Linux, Windows and macOS from the [Releases](https://github.com/mlange-42/tiny-world/releases). | ||
|
||
#### macOS version | ||
For the macOS version, please right-click the app and select "Open" to bypass the security warning, as the binary is not signed. | ||
|
||
In case you get the message `“tiny-world.app” is damaged and can’t be opened. You should move it to the Bin.`, please use the following command from the terminal: | ||
```shell | ||
xattr -c tiny-world.app | ||
``` | ||
This will remove the quarantine attribute from the app. You can then open it as usual. | ||
|
||
### Build from source | ||
|
||
Clone the repository and build or run the game with [Go](https://go.dev): | ||
|
||
```shell | ||
git clone https://github.com/mlange-42/tiny-world.git | ||
cd tiny-world | ||
go run . | ||
``` | ||
|
||
For building on Unix systems, `libgl1-mesa-dev` and `xorg-dev` are required. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters