Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eric Duminil
casanova-online
Commits
0b8caa0b
Commit
0b8caa0b
authored
May 17, 2026
by
Eric Duminil
Browse files
Removing old install script
parent
294f046d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
0b8caa0b
...
...
@@ -7,10 +7,6 @@
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}'
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.
@
echo
"
${green}
Building image...
${no_color}
"
docker compose build
...
...
install.sh
deleted
100755 → 0
View file @
294f046d
#!/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
"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment