Commit 0b8caa0b authored by Eric Duminil's avatar Eric Duminil
Browse files

Removing old install script

parent 294f046d
...@@ -7,10 +7,6 @@ ...@@ -7,10 +7,6 @@
help: ## Show this help. help: ## Show this help.
@egrep -h '(\s##\s|^##\s)' $(MAKEFILE_LIST) | egrep -v '^--' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m %-35s\033[0m %s\n", $$1, $$2}' @egrep -h '(\s##\s|^##\s)' $(MAKEFILE_LIST) | egrep -v '^--' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m %-35s\033[0m %s\n", $$1, $$2}'
setup: ## Install CASAnova into ./config/wine (run once on the host).
@echo "${green}Installing CASAnova...${no_color}"
bash install.sh
build: ## Build the Docker image. build: ## Build the Docker image.
@echo "${green}Building image...${no_color}" @echo "${green}Building image...${no_color}"
docker compose build docker compose build
......
#!/bin/sh
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
export WINEPREFIX="$SCRIPT_DIR/config/wine"
mkdir -p "$WINEPREFIX"
echo "Initializing Wine prefix at $WINEPREFIX ..."
wineboot --init
wineserver --wait
echo "Installing CASAnova ..."
wine "$SCRIPT_DIR/CASAnova_Setup.exe"
wineserver --wait
echo "Done. CASAnova installed at $WINEPREFIX"
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment