mirror of
https://github.com/ivanizag/izapple2.git
synced 2024-10-31 20:09:02 +00:00
44 lines
1.5 KiB
Bash
44 lines
1.5 KiB
Bash
#!/bin/bash
|
|
cd /tmp
|
|
git clone https://github.com/ivanizag/izapple2
|
|
|
|
# Build izapple2console for Linux
|
|
cd /tmp/izapple2/frontend/console
|
|
go build .
|
|
chown --reference /build console
|
|
cp console /build/izapple2console
|
|
|
|
# Build izapple2console.exe for Windows
|
|
cd /tmp/izapple2/frontend/console
|
|
env CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc GOOS=windows CGO_LDFLAGS="-L/usr/x86_64-w64-mingw32/lib" CGO_FLAGS="-I/usr/x86_64-w64-mingw32/include -D_REENTRANT" go build -o izapple2console.exe .
|
|
chown --reference /build izapple2console.exe
|
|
cp izapple2console.exe /build
|
|
|
|
# Build izapple2sdl for Linux
|
|
cd /tmp/izapple2/frontend/a2sdl
|
|
go build .
|
|
chown --reference /build a2sdl
|
|
cp a2sdl /build/izapple2sdl
|
|
|
|
# Build izapple2sdl.exe for Windows
|
|
cd /tmp/izapple2/frontend/a2sdl
|
|
env CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc GOOS=windows CGO_LDFLAGS="-L/usr/x86_64-w64-mingw32/lib -lSDL2" CGO_FLAGS="-I/usr/x86_64-w64-mingw32/include -D_REENTRANT" go build -o izapple2sdl.exe .
|
|
chown --reference /build izapple2sdl.exe
|
|
cp izapple2sdl.exe /build
|
|
|
|
# Build izapple2fyne for Linux
|
|
cd /tmp/izapple2/frontend/a2fyne
|
|
go build .
|
|
chown --reference /build a2fyne
|
|
cp a2fyne /build/izapple2fyne
|
|
|
|
# Build izapple2fyne.exe for Windows
|
|
cd /tmp/izapple2/frontend/a2fyne
|
|
env CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc GOOS=windows CGO_LDFLAGS="-L/usr/x86_64-w64-mingw32/lib " CGO_FLAGS="-I/usr/x86_64-w64-mingw32/include -D_REENTRANT" go build -o izapple2fyne.exe .
|
|
chown --reference /build izapple2fyne.exe
|
|
cp izapple2fyne.exe /build
|
|
|
|
|
|
# Copy SDL2 Runtime
|
|
cp /sdl2runtime/* /build
|