summaryrefslogtreecommitdiff
path: root/roles/ocropuser/tasks/ocropus.yml
blob: de626e551471d921602e32eee17ed346d6c813b6 (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
33
34
35
36
37
38
39
40
41
---
# Installs ocropus

- name: Install ocropus dependencies
  package: name={{ item }} state=present
  with_items:
    - git
    - python-lxml
    - python-pillow
    - python2-pip
    - scipy
    - tkinter

- name: Install extra dependencies with pip (as user)
  pip: name={{ item }} extra_args="--user -U"
  become: no
  with_items:
    - matplotlib
    - numpy

- name: Clone ocropus repository
  git:
    repo: https://github.com/nickjwhite/ocropy
    dest: /home/ec2-user/src/ocropy
    depth: 1
    version: currentworking
  become: no
  register: ocroclone

- name: Build ocropus
  command: python setup.py build
  args:
    chdir: /home/ec2-user/src/ocropy
  become: no
  when: ocroclone.changed

- name: Install ocropus
  command: python setup.py install
  args:
    chdir: /home/ec2-user/src/ocropy
  when: ocroclone.changed