Commit c2ca37c6d254d1b34266815bd94c9e4e5c364b4c

Authored by Perry Werneck
2 parents 18458b60 4504f522
Exists in master and in 1 other branch develop

Merge branch 'master' into develop

Showing 2 changed files with 38 additions and 2 deletions   Show diff stats
.lgtm.yml 0 → 100644
... ... @@ -0,0 +1,38 @@
  1 +
  2 +# Reference: https://github.com/yasio/yasio/blob/main/.lgtm.yml
  3 +
  4 +extraction:
  5 + # Define settings for C/C++ analysis
  6 + #####################################
  7 + cpp:
  8 + prepare:
  9 + packages:
  10 + - gettext
  11 + - git
  12 + - make
  13 + - autotools-dev
  14 + - autoconf
  15 + - automake
  16 + - pkg-config
  17 + - gettext
  18 + - libssl-dev
  19 + - libcurl4-openssl-dev
  20 + - libgtk-3-dev
  21 + - imagemagick
  22 +
  23 + # Add an `after-prepare` step if you need to run commands after the prepare step.
  24 + # Each command should be listed on a separate line.
  25 + # This step is useful for C/C++ analysis where you want to prepare the environment
  26 + # for the `configure` step without changing the default behavior for that step.
  27 + after_prepare:
  28 + - export PRE_REQS_DIR=$(readlink -f .)/pre-reqs
  29 + - git clone https://github.com/PerryWerneck/lib3270.git ./lib3270
  30 + - cd lib3270
  31 + - ./autogen.sh
  32 + - ./configure --prefix=/usr
  33 + - make
  34 + - make DESTDIR=${PRE_REQS_DIR} install
  35 + - cd ..
  36 + - export LIB3270_CFLAGS="-DLIB3270_NAME=3270 -DLIB3270_REVISION=00000000 -I${PRE_REQS_DIR}/usr/include"
  37 + - export LIB3270_LIBS="-L${PRE_REQS_DIR}/usr/lib -l3270"
  38 +
... ...
README.md
... ... @@ -6,10 +6,8 @@ See more details at https://softwarepublico.gov.br/social/pw3270/
6 6  
7 7 [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
8 8 ![CodeQL](https://github.com/PerryWerneck/libv3270/workflows/CodeQL/badge.svg?branch=master)
9   -![Analytics](https://ga-beacon.appspot.com/UA-35100728-2/github/libv3270)
10 9 ![Downloads](https://img.shields.io/github/downloads/PerryWerneck/libv3270/total.svg)
11 10  
12   -
13 11 ## Instalation
14 12  
15 13 ### Linux
... ...