#!/bin/sh TIME_START=$(date +%s) fcomplete() { TIME_END=$(date +%s) TIME_TAKEN=$(( TIME_END - TIME_START )) echo "Done (${TIME_TAKEN}s)." exit 0 } if [ $# -lt 1 ]; then printf "Usage: %s [] - Builds Proxywoman for the given platform.\n" "$0" printf "Usage: %s clean - Cleans the out/ directory.\n" "$0" exit 3 fi # Ensure the user is in the correct directory (the directory containing this script.) if [ "$(pwd)" != "${0%/*}" ]; then cd "${0%/*}" || exit fi . ./version.properties # # COMMAND: clean # if [ "$1" = "clean" ]; then echo "Cleaning build directory..." rm -rf ./out/* fcomplete exit 0 fi # # COMMAND: build # # Collect parameters. PLATFORM="$1" BUILD_TYPE="$2" # Ensure that a valid OS/platform has been selected. if [ "$PLATFORM" != "darwin" ] && [ "$PLATFORM" != "linux" ] && [ "$PLATFORM" != "windows" ]; then echo "Invalid platform selected ($PLATFORM). It must be one of ." exit 4 fi # Ensure that a valid build type has been selected. if [ $# -lt 2 ]; then BUILD_TYPE="desktop" elif [ "$BUILD_TYPE" != "desktop" ] && [ "$BUILD_TYPE" != "server" ]; then echo "Invalid build type selected ($BUILD_TYPE). It must be one of ." exit 5 fi # We're running a build. echo "Building Proxywoman $BUILD_TYPE v$VERSION_NAME (build $VERSION_CODE) for $PLATFORM" echo "Developed by @NBTX (Apollo Software)" echo "" echo "" # Ensure output directory exists. [ -d "out/" ] || mkdir "out/" [ -d "out/$PLATFORM-$BUILD_TYPE" ] && rm -r "out/$PLATFORM-$BUILD_TYPE" mkdir "out/$PLATFORM-$BUILD_TYPE" OUTPUT_DIR="out/$PLATFORM-$BUILD_TYPE" # Handle special build: server if [ "$BUILD_TYPE" = "server" ]; then echo "Executing go build..." if [ "$PLATFORM" = "windows" ]; then GOOS="$PLATFORM" go build -ldflags "-X main.VersionName=$VERSION_NAME -X main.VersionCode=$VERSION_CODE" -o "$OUTPUT_DIR/proxywoman-server.exe" server/server.go mv "$OUTPUT_DIR/proxywoman-server.exe" "$OUTPUT_DIR/proxywoman-server-windows-v${VERSION_NAME}.exe" # echo "Compressing release binary..." # WORKING_DIR=$(pwd) # cd "$OUTPUT_DIR" || exit 1 # zip -r "proxywoman-server-windows-v${VERSION_NAME}.zip" "proxywoman-server-windows-v${VERSION_NAME}.exe" # cd "$WORKING_DIR" || exit 1 else GOOS="$PLATFORM" go build -ldflags "-X main.VersionName=$VERSION_NAME -X main.VersionCode=$VERSION_CODE" -o "$OUTPUT_DIR/proxywoman-server" server/server.go mv "$OUTPUT_DIR/proxywoman-server" "$OUTPUT_DIR/proxywoman-server-${PLATFORM}-v${VERSION_NAME}" # echo "Compressing release binary..." # WORKING_DIR=$(pwd) # cd "$OUTPUT_DIR" || exit 1 # zip -r "proxywoman-server-${PLATFORM}-v${VERSION_NAME}.zip" "proxywoman-server-${PLATFORM}-v${VERSION_NAME}" # cd "$WORKING_DIR" || exit 1 fi exit fi # Remove all legacy icons. [ -f icons/icon_unix.go ] && rm icons/icon_unix.go [ -f icons/icon_win.go ] && rm icons/icon_win.go # Build the icon for the appropriate platform. echo "Generating platform icon..." if [ "$PLATFORM" = "darwin" ] || [ "$PLATFORM" = "linux" ]; then cat "icons/icon.png" | go run github.com/cratonica/2goarray Data icon >> icons/icon_unix.go elif [ "$PLATFORM" = "windows" ]; then cat "icons/icon.ico" | go run github.com/cratonica/2goarray Data icon >> icons/icon_win.go else echo "Unknown platform: $1" exit 3 fi # Copy binary assets. echo "Copying binary assets..." cp -r "resources/$PLATFORM/." "$OUTPUT_DIR/" # Inject placeholders into assets. echo "Injecting placeholders into binary assets..." find "$OUTPUT_DIR" -type f -print0 | xargs -0 perl -pi -e "s/\\\$VERSION_NAME/$VERSION_NAME/g" find "$OUTPUT_DIR" -type f -print0 | xargs -0 perl -pi -e "s/\\\$VERSION_CODE/$VERSION_CODE/g" # Execute platform build. echo "Executing go build..." if [ "$PLATFORM" = "darwin" ]; then mkdir -p "$OUTPUT_DIR/Proxywoman.app/Contents/MacOS" mkdir -p "$OUTPUT_DIR/Proxywoman.app/Contents/MacOS/icons" cp icons/icon.png "$OUTPUT_DIR/Proxywoman.app/Contents/MacOS/icons/" GOOS="darwin" GO111MODULE=on go build -ldflags "-X main.VersionName=$VERSION_NAME -X main.VersionCode=$VERSION_CODE" -o "$OUTPUT_DIR/Proxywoman.app/Contents/MacOS/postwoman-proxy" # Produce output binaries mv "$OUTPUT_DIR/Proxywoman.app" "$OUTPUT_DIR/Proxywoman-macOS-v${VERSION_NAME}.app" # Compressing output binaries echo "Compressing output binaries" WORKING_DIR=$(pwd) cd "$OUTPUT_DIR" || exit 1 zip -r "Proxywoman-macOS-v${VERSION_NAME}.zip" "Proxywoman-macOS-v${VERSION_NAME}.app" cd "$WORKING_DIR" || exit 1 elif [ "$PLATFORM" = "windows" ]; then [ -f "rsrc.syso" ] && rm rsrc.syso go get github.com/akavel/rsrc rsrc -manifest="$OUTPUT_DIR/postwoman-proxy.manifest" -ico="icons/icon.ico" -o rsrc.syso GOOS="windows" GO111MODULE=on go build -ldflags "-X main.VersionName=$VERSION_NAME -X main.VersionCode=$VERSION_CODE -H=windowsgui" -o "$OUTPUT_DIR/proxywoman.exe" mkdir "$OUTPUT_DIR/icons" cp icons/icon.png "$OUTPUT_DIR/icons/icon.png" mkdir "$OUTPUT_DIR/data" rm "$OUTPUT_DIR/postwoman-proxy.manifest" rm rsrc.syso mv "$OUTPUT_DIR/proxywoman.exe" "$OUTPUT_DIR/Proxywoman-Windows-v${VERSION_NAME}.exe" # Compressing output binaries echo "Compressing output binaries" # WORKING_DIR=$(pwd) # cd "$OUTPUT_DIR" || exit 1 # zip -r "Proxywoman-Windows-v${VERSION_NAME}.zip" "Proxywoman-Windows-v${VERSION_NAME}.exe" # cd "$WORKING_DIR" || exit 1 elif [ "$PLATFORM" = "linux" ]; then GOOS="linux" GO111MODULE=on go build -ldflags "-X main.VersionName=$VERSION_NAME -X main.VersionCode=$VERSION_CODE" -o "$OUTPUT_DIR/Proxywoman-Linux-v${VERSION_NAME}" # Compressing output binaries # echo "Compressing output binaries" # WORKING_DIR=$(pwd) # cd "$OUTPUT_DIR" || exit 1 # zip -r "Proxywoman-Linux-v${VERSION_NAME}.zip" "Proxywoman-Linux-v${VERSION_NAME}" # cd "$WORKING_DIR" || exit 1 fi echo "" echo "" fcomplete