summaryrefslogblamecommitdiff
path: root/tools/ci/jobs/mplint.sh
blob: 918417db1eacebdc1436c0f2ed1bf4f3d0cf1ce2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                            

       









                                                
#!/bin/bash

export CC=gcc
export CXX=g++
export LOGFILE=mplint_po.log

source ./tools/ci/scripts/init.sh

aptget_install gcc g++ git \
    make autoconf automake autopoint gettext

export CXXFLAGS="-std=gnu++11"

do_init

git clone https://gitlab.com/manaplus/mplint.git
cd mplint
run_configure_simple
run_make
cd ..
run_mplint $*

source ./tools/ci/scripts/exit.sh

exit 0