summaryrefslogtreecommitdiff
path: root/ansible/playbooks/setup_jhbuild.yaml
diff options
context:
space:
mode:
authorSrdjan Grubor <sgnn7@sgnn7.org>2014-01-14 15:42:34 -0600
committerSrdjan Grubor <sgnn7@sgnn7.org>2014-01-16 21:46:33 -0600
commitee539057a3e7387b95736dc85bd4d9af5c8e552c (patch)
tree1568461989bbb3785b15119df239fb6f9ac8fa00 /ansible/playbooks/setup_jhbuild.yaml
parent5214ed7a373ef9bea7c2028cbe60e264449da812 (diff)
Added code that can run sudo tasks and install turbine/transifex client
Diffstat (limited to 'ansible/playbooks/setup_jhbuild.yaml')
-rw-r--r--ansible/playbooks/setup_jhbuild.yaml11
1 files changed, 8 insertions, 3 deletions
diff --git a/ansible/playbooks/setup_jhbuild.yaml b/ansible/playbooks/setup_jhbuild.yaml
index 3df6a63..fdbb0c0 100644
--- a/ansible/playbooks/setup_jhbuild.yaml
+++ b/ansible/playbooks/setup_jhbuild.yaml
@@ -3,17 +3,22 @@
- name: "Ensuring that git is installed"
apt: name=git
+
- name: "Creating checkout directory"
file: path=~/checkout state=directory mode=755
+
- name: "Cloning jhbuild"
git: repo=git://git.gnome.org/jhbuild
dest=~/checkout/jhbuild
-- name: "Installing jhbuildi - autogen"
+- name: "Installing jhbuild - autogen"
shell: cd ~/checkout/jhbuild && ./autogen.sh
-- name: "Installing jhbuildi - make"
+- name: "Installing jhbuild - make"
shell: cd ~/checkout/jhbuild && make
-- name: "Installing jhbuildi - make install"
+- name: "Installing jhbuild - make install"
shell: cd ~/checkout/jhbuild && make install
+
+- name: "Creating glib schemas dir"
+ file: path=~/install/share/glib-2.0/schemas state=directory mode=755