mirror of
https://github.com/libretro/mgba.git
synced 2024-11-27 18:20:33 +00:00
10 lines
204 B
Bash
Executable File
10 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ $TRAVIS_OS_NAME = "osx" ]; then
|
|
brew update
|
|
brew install qt5 ffmpeg imagemagick sdl2 libedit libelf libpng libzip
|
|
else
|
|
sudo apt-get update
|
|
sudo apt-get -y install libseccomp2
|
|
fi
|