.travis.yml

This commit is contained in:
Markus Gans 2015-11-22 22:26:28 +01:00
parent 9624e98d18
commit d8d77f9246
1 changed files with 4 additions and 4 deletions

View File

@ -6,14 +6,14 @@ compiler:
install: install:
- lsb_release -a - lsb_release -a
- uname -a - uname -a
- apt-get update - sudo apt-get update
- apt-get -y install autotools-dev automake autoconf autoconf-archive libtool libglib2.0-dev libncurses5-dev libgpm-dev gperf - sudo apt-get -y install autotools-dev automake autoconf autoconf-archive libtool libglib2.0-dev libncurses5-dev libgpm-dev gperf
- git clone git://github.com/gansm/finalcut.git - git clone git://github.com/gansm/finalcut.git
- cd finalcut - cd finalcut
- autoreconf -v --install --force - autoreconf -v --install --force
- ./configure --prefix=/usr - ./configure --prefix=/usr
- make V=1 -j10 - make V=1 -j10
- make install - sudo make install
- cd .. - cd ..
- rm -rf finalcut - rm -rf finalcut
@ -36,5 +36,5 @@ addons:
script: script:
- autoreconf -v --install --force && ./configure --prefix=/usr && make -j10 && make check - autoreconf -v --install --force && ./configure --prefix=/usr && make -j10 && make check
sudo: false sudo: required