finalcut/.travis.yml

20 lines
533 B
YAML
Raw Normal View History

2015-08-09 23:26:23 +02:00
language: c++
2015-08-10 21:50:27 +02:00
compiler:
- gcc
2015-08-09 23:26:23 +02:00
install:
2015-08-10 21:50:27 +02:00
- lsb_release -a
- uname -a
- sudo apt-get update
2015-09-30 22:39:02 +02:00
- sudo apt-get -y install autotools-dev automake autoconf autoconf-archive libtool libglib2.0-dev libncurses5-dev libgpm-dev gperf
2015-08-10 21:50:27 +02:00
- git clone git://github.com/gansm/finalcut.git
- cd finalcut
- autoreconf -v --install --force
- ./configure --prefix=/usr
2015-09-30 22:39:02 +02:00
- make V=1 -j10
2015-08-10 21:50:27 +02:00
- sudo make install
- cd ..
- rm -rf finalcut
script:
2015-09-30 22:39:02 +02:00
- autoreconf -v --install --force && ./configure --prefix=/usr && make -j10 && make check
2015-08-09 23:26:23 +02:00