main.yml 997 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - name: configure ufo-core
  3. command: chdir=/opt/ufo-core cmake . -DPREFIX={{ install_prefix }} -DLIBDIR={{ libdir }}
  4. notify:
  5. - build ufo-core
  6. - name: build ufo-core
  7. command: chdir=/opt/ufo-core make
  8. notify:
  9. - install ufo-core
  10. - name: install ufo-core
  11. command: chdir=/opt/ufo-core make install
  12. - name: configure ufo-filters
  13. command: chdir=/opt/ufo-filters cmake . -DPREFIX={{ install_prefix }} -DLIBDIR={{ libdir }}
  14. notify:
  15. - build ufo-filters
  16. - name: build ufo-filters
  17. command: chdir=/opt/ufo-filters make
  18. notify:
  19. - install ufo-filters
  20. - name: install ufo-filters
  21. command: chdir=/opt/ufo-filters make install
  22. - name: install ufo-scripts
  23. command: chdir=/opt/ufo-scripts python setup.py install
  24. - name: install ufo-python-tools
  25. command: chdir=/opt/ufo-python-tools python setup.py install
  26. - name: update typelib
  27. file: src=/usr/local/lib/girepository-1.0/Ufo-0.6.typelib
  28. dest=/usr/lib64/girepository-1.0/Ufo-0.6.typelib
  29. state=link