mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
14 lines
259 B
Bash
Executable File
14 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $TRAVIS_OS_NAME = "osx" ]; then
|
|
brew update
|
|
brew install libpng pkg-config
|
|
else # linux
|
|
sudo apt-get -qq update
|
|
sudo apt-get install -y -q bison flex libpng-dev pkg-config
|
|
fi
|
|
|
|
echo "Dependencies:"
|
|
yacc --version
|
|
flex --version
|