blob: b9f05c1d846108ab33fd822b46273f13f1d45ad5 (
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
|
---
# vim:ff=unix ts=2 sw=2 ai expandtab
- name: "Ensuring that git is installed"
apt: name=git update_cache=true cache_valid_time=259200
- name: "Creating turbine directory"
file: path=~/checkout state=directory mode=755
- name: "Cloning turbine"
git: repo=git://git.gnome.org/turbine
dest=~/checkout/turbine
- name: "Installing turbine"
shell: cd ~/checkout/turbine && python setup.py install
- name: "Installing transifex client"
shell: pip install transifex-client
- name: "Creating EOS links for various apps"
shell: cp /usr/share/applications/$item.desktop /usr/share/applications/eos-app-$item.desktop
with_items:
- gnome-terminal
- devhelp
|