mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
24 lines
526 B
Bash
Executable File
24 lines
526 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Quick and dangerous script for building OSX binaries.
|
|
|
|
# First, have a recent checkout of the dev version of pyinstaller. Change into
|
|
# the pyinstaller directory, and then run this script.
|
|
|
|
DST=/tmp/osx-mitmproxy
|
|
MITMPROXY=~/mitmproxy/mitmproxy
|
|
PYINST_CMD="./pyinstaller.py -F --clean"
|
|
|
|
rm -rf $DST
|
|
mkdir -p $DST
|
|
rm -rf mitmproxy
|
|
rm -rf mitmdump
|
|
|
|
$PYINST_CMD $MITMPROXY/mitmproxy
|
|
cp mitmproxy/dist/mitmproxy $DST
|
|
|
|
$PYINST_CMD $MITMPROXY/mitmdump
|
|
cp mitmdump/dist/mitmdump $DST
|
|
|
|
cshape $MITMPROXY/doc-src $DST/doc
|