#!/bin/sh # Fetch minimal third-party dependencies set -e echo "Initializing demo64k dependencies..." mkdir -p third_party if [ ! -f third_party/miniaudio.h ]; then echo "Fetching miniaudio.h..." curl -L https://raw.githubusercontent.com/mackron/miniaudio/master/miniaudio.h -o third_party/miniaudio.h else echo "miniaudio.h already present." fi echo "Done."