forked from miketout/Agama
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Asher-Dev' into master
- Loading branch information
Showing
13 changed files
with
139 additions
and
186 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,21 +1,35 @@ | ||
#!/bin/bash | ||
### Build script for Iguana application for Linux x64 platform. | ||
### Created by mmaxian, 3/2017 | ||
|
||
[ -z $AGAMA_VERSION ] && echo "AGAMA_VERSION variable is not set." && exit 0 | ||
[ ! -d build ] && mkdir build | ||
|
||
echo | ||
echo "Build script for Iguana application for Linux x64 platform." | ||
echo "Preparing electron package $AGAMA_VERSION" | ||
### Created by mmaxian, 3/2017; updated by Asher Dawes 7/2018 | ||
|
||
electron-packager . --platform=linux --arch=x64 \ | ||
--icon=assets/icons/agama_icons/128x128.png \ | ||
--out=build/ \ | ||
--buildVersion=$AGAMA_VERSION \ | ||
--ignore=assets/bin/win64 \ | ||
--ignore=assets/bin/osx \ | ||
--ignore=react/node_modules \ | ||
--ignore=react/src \ | ||
--ignore=react/www \ | ||
--overwrite | ||
--ignore=buildscripts\ | ||
--ignore=windeps \ | ||
--ignore=.travis.yml \ | ||
--ignore=check_submodule.sh \ | ||
--ignore=.gitlab-ci.yml \ | ||
--ignore=.gitignore \ | ||
--ignore=.gitmodules \ | ||
--ignore=binary_artifacts_win.sh \ | ||
--ignore=Brewfile \ | ||
--ignore=make-deb.js \ | ||
--ignore=make-patch.sh \ | ||
--ignore=make-rpm.js \ | ||
--ignore=README.md \ | ||
--ignore=version_build \ | ||
--prune=true \ | ||
--overwrite \ | ||
--version-string.CompanyName="VerusCoin" \ | ||
--version-string.FileDescription="Agama" \ | ||
--version-string.OriginalFilename="Agama" \ | ||
--version-string.ProductName="Agama" \ | ||
--version-string.InternalName="Agama" \ | ||
--app-copyright="Copyright (C) 2018 VerusCoin. All rights reserved." | ||
|
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,20 +1,35 @@ | ||
#!/bin/bash | ||
### Build script for Agama application for MacOS platform. | ||
### Created by mmaxian, 3/2017; updated by David Dawes 5/2018 | ||
### Created by mmaxian, 3/2017; updated by David Dawes 5/2018; updated by Asher Dawes 7/2018 | ||
|
||
[ -z $AGAMA_VERSION ] && echo "AGAMA_VERSION variable is not set." && exit 0 | ||
[ ! -d build ] && mkdir build | ||
|
||
echo | ||
echo "Build script for Agama application for MacOS platform." | ||
echo "Preparing electron package $AGAMA_VERSION" | ||
|
||
electron-packager . --platform=darwin --arch=x64 \ | ||
electron-packager . --platform=darwin \ | ||
--arch=x64 \ | ||
--icon=assets/icons/agama_app_icon.icns \ | ||
--out=build/ --buildVersion=$AGAMA_VERSION \ | ||
--out=build/ \ | ||
--ignore=assets/bin/win64 \ | ||
--ignore=assets/bin/linux64 \ | ||
--ignore=react/node_modules \ | ||
--ignore=react/src \ | ||
--ignore=react/www \ | ||
--overwrite | ||
--ignore=buildscripts\ | ||
--ignore=windeps \ | ||
--ignore=.travis.yml \ | ||
--ignore=check_submodule.sh \ | ||
--ignore=.gitlab-ci.yml \ | ||
--ignore=.gitignore \ | ||
--ignore=.gitmodules \ | ||
--ignore=binary_artifacts_win.sh \ | ||
--ignore=Brewfile \ | ||
--ignore=make-deb.js \ | ||
--ignore=make-patch.sh \ | ||
--ignore=make-rpm.js \ | ||
--ignore=README.md \ | ||
--ignore=version_build \ | ||
--prune=true \ | ||
--overwrite \ | ||
--version-string.CompanyName="VerusCoin" \ | ||
--version-string.FileDescription="Agama" \ | ||
--version-string.OriginalFilename="Agama" \ | ||
--version-string.ProductName="Agama" \ | ||
--version-string.InternalName="Agama" \ | ||
--app-copyright="Copyright (C) 2018 VerusCoin. All rights reserved." |
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
Oops, something went wrong.