mirror of
https://github.com/onionshare/onionshare.git
synced 2025-08-17 02:21:00 -04:00
Ripping out dmg code, replacing pyinstaller with py2app for OSX -- still in progress (#151)
This commit is contained in:
parent
aae9995c5f
commit
a86cda4549
11 changed files with 105 additions and 175 deletions
14
install/build_osx.sh
Executable file
14
install/build_osx.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue