-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add explanations of how to make bakefile distribution.
Also remove the mention of submodules from the main README, the only currently existing submodule (3rdparty/pyinstaller) is only needed for making bakefile distributions under Windows, not using it.
- Loading branch information
Showing
2 changed files
with
33 additions
and
4 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
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,33 @@ | ||
0. Before making a distribution | ||
------------------------------- | ||
|
||
- Run "make test". | ||
- Create a tag vX.Y.Z where "X.Y.Z" is the version. | ||
|
||
|
||
1. Making Unix distribution | ||
--------------------------- | ||
|
||
Run "make -C distrib distrib_unix", the output file will be | ||
bakefile-X.Y.Z_beta-bin.tar.bz2. | ||
|
||
|
||
2. Making Windows distribution | ||
------------------------------ | ||
|
||
Ensure that you have pyinstaller submodule (which is only needed for making | ||
Windows distributions) and do | ||
|
||
git submodule update --init 3rdparty/pyinstaller | ||
|
||
if necessary. | ||
|
||
Check that upx and zip are in PATH. | ||
|
||
Run "make -C distrib distrib_win", the output file be | ||
bakefile-X.Y.Z_beta-win.zip | ||
|
||
Notice that at one time there was an effort to produce an MSI installer for | ||
bakefile and its remains can be found in wix subdirectory, however the files | ||
there are not maintained and bakefile currently is not distributed in this | ||
form. |