-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
40 additions
and
43 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,21 @@ | ||
|
||
Setup on OS-X | ||
|
||
|
||
If you have a previous installation of the game on your computer, | ||
then delete it by typing something like: | ||
|
||
rm -fr <game-installation-directory>/<game-dir> | ||
|
||
This will save space on your computer's disk drive, and will | ||
help to avoid confusion. Each download is self-contained. | ||
|
||
Choose an installation directory and move the tarball there; | ||
leaving it in ./Downloads is fine. | ||
|
||
For *.7z files, you may use Keka or 7zip to unpack the tarred | ||
game directory. | ||
|
||
For *.gz files, simply gunzip [] followed by tar -xf []. | ||
|
||
|
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 |
---|---|---|
@@ -1,42 +1,17 @@ | ||
Where is the Ada source code? | ||
|
||
This repository exists for the convenience of gamers, not co-developers. | ||
The tarball contains all the source code, as well as the runtime files | ||
for 3 platforms, headers, shaders, textures, music, game files, | ||
compilation scripts, nonstandard external libraries, and executables, | ||
including a Mac-bundle. Source code can be found in the main directory | ||
and the ./adabindings & ./adautils sub-directories. | ||
The tarball, *.gz or *.7z, contains all the source code, | ||
as well as the runtime files for 3 platforms, headers, shaders, textures, | ||
music, game files, compilation scripts, nonstandard external libraries, | ||
and executables, including a Mac-bundle. Source code can be found in | ||
the main directory and the ./adabindings & ./adautils sub-directories. | ||
|
||
===================================================================== | ||
Note for Windows users: | ||
|
||
I decided to deliver tarballs because it is the normal way on | ||
OSX and Linux, and because I tried 4 ways to extract them on | ||
Windows, all of which worked smoothly: | ||
.) PeaZip; | ||
.) WinZip [demo]; | ||
.) 7-Zip; | ||
.) tar [on recent versions of Windows] | ||
|
||
|
||
I suggest using 7z [from www.7-zip.org] to unzip, | ||
and then untar the files <name.tar.gz>: | ||
|
||
1) 7z x name.tar.gz [this unzips a tar file] | ||
|
||
2) 7z x name.tar [this untars a tar file into a directory] | ||
|
||
After step 2 you should have a new directory: | ||
|
||
.\name\ | ||
|
||
that contains the game, source code, etc. | ||
Windows users, please read windows-setup.txt, | ||
Mac users, please read osx-setup.txt | ||
|
||
=================================================== | ||
On osx or linux you do the usual: | ||
|
||
1) gunzip name.tar.gz | ||
2) tar -xf name.tar | ||
|
||
On linux you may use the file-manager to unpack. | ||
|
||
|
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