2024-02-22 12:08:06 +00:00
|
|
|
#!/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
|
2024-02-24 16:42:04 +00:00
|
|
|
wget https://raw.githubusercontent.com/cnvogelg/amitools/master/amitools/data/fd/bsdsocket_lib.fd
|
2024-02-22 12:08:06 +00:00
|
|
|
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"
|