blob: 8d8da670ebee669c148d688c9a9287f430ace997 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
image: debian/stable
packages:
- libacl1-dev
- liblua5.3-dev
- libncursesw5-dev
- libselinux1-dev
- libtermkey-dev
- libtre-dev
- lua-lpeg
sources:
- https://github.com/martanne/vis
tasks:
- locale: |
sudo sh -c 'echo en_US.UTF-8 UTF-8 > /etc/locale.gen'
sudo locale-gen
- build: |
cd vis
./configure
make
- test: |
cd vis
make test
|