diff options
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/scantailor/tasks/main.yml | 2 | ||||
| -rw-r--r-- | roles/scantailor/tasks/scantailor.yml | 41 | 
2 files changed, 43 insertions, 0 deletions
| diff --git a/roles/scantailor/tasks/main.yml b/roles/scantailor/tasks/main.yml new file mode 100644 index 0000000..788df22 --- /dev/null +++ b/roles/scantailor/tasks/main.yml @@ -0,0 +1,2 @@ +--- +- include: scantailor.yml diff --git a/roles/scantailor/tasks/scantailor.yml b/roles/scantailor/tasks/scantailor.yml new file mode 100644 index 0000000..8a8820e --- /dev/null +++ b/roles/scantailor/tasks/scantailor.yml @@ -0,0 +1,41 @@ +--- +# Installs scantailor + +- name: Install scantailor dependencies +  package: name={{ item }} state=present +  with_items: +    - boost-devel +    - cmake +    - gcc-c++ +    - git +    - libjpeg-turbo-devel +    - libpng-devel +    - libtiff-devel +    - libXrender-devel +    - make +    - qt-devel +    - zlib-devel + +- name: Clone scantailor repository +  git: +    repo: https://github.com/scantailor/scantailor +    dest: /home/ec2-user/src/scantailor +    depth: 1 +  become: no +  register: scanclone + +- name: Configure and build scantailor +  command: "{{ item }}" +  args: +    chdir: /home/ec2-user/src/scantailor +  with_items: +    - cmake . +    - make +  become: no +  when: scanclone.changed + +- name: Install scantailor +  command: make install +  args: +    chdir: /home/ec2-user/src/scantailor +  when: scanclone.changed | 
