Skip to content

Commit

Permalink
Merge pull request ggez#17 from ggez/travis-fuckery
Browse files Browse the repository at this point in the history
Install missing deps
  • Loading branch information
svenstaro authored Nov 29, 2016
2 parents df2bd16 + c28bdaf commit a9490a9
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
sudo: false
dist: trusty
group: beta
sudo: true
language: rust
rust:
- stable
- beta
- nightly

addons:
apt:
packages:
- libsdl2-dev
- libsdl2-image-dev
- libsdl2-ttf-dev
- libsdl2-mixer-dev
sources:
- debian-sid
install:
- wget http://libsdl.org/release/SDL2-2.0.5.tar.gz
- tar -xzvf SDL2-2.0.5.tar.gz
- pushd SDL2-2.0.5 && ./configure --prefix=/usr && make && sudo make install && popd

- wget https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.1.tar.gz
- tar -xzvf SDL2_mixer-2.0.1.tar.gz
- pushd SDL2_mixer-2.0.1 && ./configure --prefix=/usr && make && sudo make install && popd

- wget https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.1.tar.gz
- tar -xzvf SDL2_image-2.0.1.tar.gz
- pushd SDL2_image-2.0.1 && ./configure --prefix=/usr && make && sudo make install && popd

0 comments on commit a9490a9

Please sign in to comment.