shithub: choc

ref: ca6424121b6db33b7ce6e6d8671f9fa32b22e4cc
dir: /.travis.yml/

View raw version
language: c

compiler: gcc

# Travis uses Ubuntu 12.04 (Precise) for builds by default, which is too
# old and missing the SDL2 packages, so use Trusty instead.
sudo: required
dist: trusty

addons:
    apt:
        packages:
        - libsdl2-dev
        - libsdl2-mixer-dev
        - libsdl2-net-dev
        - libsdl2-image-dev
        - libsamplerate0-dev

script: ./autogen.sh && make && make install DESTDIR=/tmp/whatever && make dist

branches:
    only:
    - master
    - sdl2-branch