Ripping out dmg code, replacing pyinstaller with py2app for OSX -- still in progress (#151)

This commit is contained in:
Micah Lee 2015-05-15 16:56:22 -07:00
parent aae9995c5f
commit a86cda4549
11 changed files with 105 additions and 175 deletions

14
install/build_osx.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
cd $ROOT
# deleting dist
echo Deleting dist folder
rm -rf $ROOT/dist &>/dev/null 2>&1
# build the .app
echo Building OnionShare.app
python setup.py py2app
# codesign the .app