diff options
author | Melody Horn <melody@boringcactus.com> | 2020-12-24 05:53:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-24 05:53:02 -0700 |
commit | 5d62b37fb4ec9d205422d87900a10bf2b41c8ac5 (patch) | |
tree | cb4b5f8cd664c6a80d4385c2e7b643bfa8a56eae /scripts | |
parent | 3364694f14f8a0b92ce70ca608a73966c4043256 (diff) | |
download | vidslice-5d62b37fb4ec9d205422d87900a10bf2b41c8ac5.tar.gz vidslice-5d62b37fb4ec9d205422d87900a10bf2b41c8ac5.zip |
make sure the build actually works (#1)
* get ready to wrestle with build infra for three hours
* put some things back where they came from
* juggle more dependency stuff
* it's always something
* use correct python
* look harder for the correct DLLs fml
* correctly disable sh -x
* i swear to fuckin christ
* bdg voice i am going to throw myself into the sea
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/setup_linux.sh | 6 | ||||
-rw-r--r-- | scripts/setup_osx.sh | 3 | ||||
-rw-r--r-- | scripts/setup_windows.sh | 9 |
3 files changed, 1 insertions, 17 deletions
diff --git a/scripts/setup_linux.sh b/scripts/setup_linux.sh index 4f199b7..f1f641a 100644 --- a/scripts/setup_linux.sh +++ b/scripts/setup_linux.sh @@ -1,7 +1 @@ #!/usr/bin/env bash -set -x - -sudo apt-get update -sudo apt-get install -y python3 python3-dev python3-pip python3-setuptools libgtk2.0-dev libgtk-3-dev libjpeg-dev libtiff-dev libsdl1.2-dev libgstreamer-plugins-base0.10-dev libnotify-dev freeglut3 freeglut3-dev libsm-dev libwebkitgtk-dev libwebkitgtk-3.0-dev - -set +x diff --git a/scripts/setup_osx.sh b/scripts/setup_osx.sh index 2dcd2b1..f1f641a 100644 --- a/scripts/setup_osx.sh +++ b/scripts/setup_osx.sh @@ -1,4 +1 @@ #!/usr/bin/env bash -set -x - -set +x diff --git a/scripts/setup_windows.sh b/scripts/setup_windows.sh index 612f10a..a8da537 100644 --- a/scripts/setup_windows.sh +++ b/scripts/setup_windows.sh @@ -1,12 +1,5 @@ #!/usr/bin/env bash -set -x - -choco install python +choco install python --version 3.7.9 -y curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py -echo $PATH export PATH=/C/Python37:$PATH -which python python get-pip.py -python -m pip install --upgrade git+https://github.com/anthony-tuininga/cx_Freeze.git@master - -set +x |