shithub: rgbds

ref: fa0fa4d5ac9e806f4e1770e1fcab7cf3c5bc5289
dir: /.github/actions/install_deps.sh/

View raw version
case `echo $1 | cut -d '-' -f 1` in
	ubuntu)
		sudo apt-get -qq update
		sudo apt-get install -yq bison libpng-dev pkg-config
		;;
	macos)
		brew install libpng pkg-config md5sha1sum
		;;
	*)
		echo "WARNING: Cannot install deps for OS '$1'"
		;;
esac

bison --version
make --version
cmake --version