25 lines
620 B
Bash
Executable File
25 lines
620 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p stuff
|
|
if [ ! -d stuff/AMOS-Professional-Official ]; then
|
|
cd stuff
|
|
git clone https://code.hackerbun.dev/TheIndustriousRabbit/amos-professional.git
|
|
cd ..
|
|
fi
|
|
|
|
if [ ! -f src/bsdsocket_lib.fd ]; then
|
|
cd src
|
|
wget https://raw.githubusercontent.com/cnvogelg/amitools/master/amitools/data/fd/bsdsocket_lib.fd
|
|
cd ..
|
|
fi
|
|
|
|
echo "On the emulated Amiga, mount this folder at amos-pro-bsdsocket-extension: and run"
|
|
echo
|
|
echo "cd amos-pro-bsdsocket-extension:"
|
|
echo "cd src"
|
|
echo 'fd2pragma bsdsocket_lib.fd to "" special 20'
|
|
echo
|
|
echo "Then, to build the software, run:"
|
|
echo
|
|
echo "execute absdsocket"
|