summaryrefslogtreecommitdiff
path: root/roles/tesseractor/tasks/leptonica.yml
blob: 7d92d84282f1fc4f184fcca1d09fb82f391a70b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
# Installs leptonica

- name: Install leptonica dependencies
  apt:
    name: ['g++', 'git', 'libjpeg62-turbo-dev', 'libpng-dev', 'libtiff-dev', 'make', 'zlib1g-dev']
    state: present

- name: Clone leptonica repository
  git:
    repo: https://github.com/nickjwhite/leptonica
    dest: /home/{{ ansible_user }}/src/leptonica
    version: addinstall
    depth: 1
  become: no
  register: leptclone

- name: Build leptonica
  command: make -f makefile.static {{ item }}
  args:
    chdir: /home/{{ ansible_user }}/src/leptonica/src
  with_items:
    - nodebug
    - SHARED=yes shared
  become: no
  when: leptclone.changed

- name: Install leptonica
  command: make -f makefile.static install
  args:
    chdir: /home/{{ ansible_user }}/src/leptonica/src
  when: leptclone.changed