This file contains hidden or 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
| #!/bin/bash | |
| WINE_GIT_URL="https://gitlab.winehq.org/wine/wine.git" | |
| STAGING_GIT_URL="https://github.com/wine-staging/wine-staging.git" | |
| BUILD_DIR="$(pwd)/wine_staging_macos_build" | |
| echo "** Wine build files will be saved to \`$BUILD_DIR\` **" | |
| mkdir -p "$BUILD_DIR/wine64-build" |
This file contains hidden or 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
| from deployment.cuisine import * | |
| from fabric.api import * | |
| from fabric.context_managers import * | |
| from fabric.utils import puts | |
| from fabric.colors import red, green | |
| import simplejson | |
| import os |