mirror of
https://github.com/mgba-emu/mgba.git
synced 2025-04-02 10:51:43 -04:00
8 lines
185 B
Bash
Executable file
8 lines
185 B
Bash
Executable file
#!/bin/sh
|
|
if [ $TRAVIS_OS_NAME = "osx" ]; then
|
|
brew update
|
|
brew install qt5 ffmpeg sdl2 libedit libelf libpng libzip
|
|
else
|
|
sudo apt-get update
|
|
sudo apt-get -y install libseccomp2
|
|
fi
|