diff options
author | Nick White <git@njw.name> | 2019-01-06 09:32:12 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2019-01-06 09:32:12 +0000 |
commit | f5385e25f40c8c9140bb9deacbfda42eaa5c8a1c (patch) | |
tree | 858f949b0bf19408fac3812b7435361c35055cf9 /roles/scantailor | |
parent | 28549fb8233b36a2b1c30f66736e55e48ec78f3d (diff) |
Move scantailor under preprocessing role, and install pdfimages there
Diffstat (limited to 'roles/scantailor')
-rw-r--r-- | roles/scantailor/tasks/main.yml | 2 | ||||
-rw-r--r-- | roles/scantailor/tasks/scantailor.yml | 41 |
2 files changed, 0 insertions, 43 deletions
diff --git a/roles/scantailor/tasks/main.yml b/roles/scantailor/tasks/main.yml deleted file mode 100644 index 788df22..0000000 --- a/roles/scantailor/tasks/main.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -- include: scantailor.yml diff --git a/roles/scantailor/tasks/scantailor.yml b/roles/scantailor/tasks/scantailor.yml deleted file mode 100644 index 8a8820e..0000000 --- a/roles/scantailor/tasks/scantailor.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- -# 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 |