~ultradvorka/hstr/hh

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# .travis.yml for HSTR

language: c

os: linux

compiler: gcc

notifications:
  email:
    on_success: change
    on_failure: change

before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -qq autotools-dev libreadline-dev libncursesw5-dev
  - aclocal
  - automake --force-missing --add-missing
  - autoconf

# eof