play 0.2.2

The package provides a mean of playing audio files.
Documentation
language: rust
sudo: required

os:
  - linux
  - osx

rust:
  - stable
  - beta
  - nightly

install:
  - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
      curl -LO ftp://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz &&
      tar -xzf automake-1.15.tar.gz && cd automake-1.15 &&
      ./configure && make && sudo make install && cd -;
      curl -LO https://pkg-config.freedesktop.org/releases/pkg-config-0.29.1.tar.gz &&
      tar -xzf pkg-config-0.29.1.tar.gz && cd pkg-config-0.29.1 &&
      ./configure && make && sudo make install && cd -;
    fi

script:
  - cargo build
  - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
      CFLAGS=-fPIC cargo build --features static;
    fi

notifications:
  email: false