mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
The tool md5sum is required by some of them. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
14 lines
270 B
Bash
Executable File
14 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $TRAVIS_OS_NAME = "osx" ]; then
|
|
brew update
|
|
brew install libpng pkg-config md5sha1sum
|
|
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
|