summaryrefslogblamecommitdiff
path: root/tools/ci/jobs/mplint.sh
blob: 0ec5421e4e009b6db6f2fbfee44fe7295b7a5b16 (plain) (tree)






















                                                
#!/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"

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