mirror of
https://github.com/pigmonkey/spark.git
synced 2026-07-31 19:51:58 +00:00
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
---
|
|
- name: Install virtualenv and virtualenvwrapper
|
|
pacman: name=python-virtualenvwrapper state=present
|
|
tags:
|
|
- python-dev
|
|
|
|
- name: Install tig
|
|
pacman: name=tig state=present
|
|
|
|
- name: Install Ruby
|
|
pacman: name=ruby state=present
|
|
tags:
|
|
- ruby-dev
|
|
|
|
- name: Download Ruby bundler
|
|
command: cower -dq ruby-bundler
|
|
chdir=/home/{{ user.name }}/{{ aur.dir }}
|
|
creates=/home/{{ user.name }}/{{ aur.dir }}/ruby-bundler
|
|
tags:
|
|
- aur
|
|
- ruby-dev
|
|
become: yes
|
|
become_user: "{{ user.name }}"
|
|
|
|
- name: Build and install Ruby bundler
|
|
command: "{{ aur.makepkg }} chdir=/home/{{ user.name }}/{{ aur.dir }}/ruby-bundler"
|
|
tags:
|
|
- aur
|
|
- ruby-dev
|
|
become: yes
|
|
become_user: "{{ user.name }}"
|
|
|
|
- name: Download Compass
|
|
command: cower -dq ruby-compass
|
|
chdir=/home/{{ user.name }}/{{ aur.dir }}
|
|
creates=/home/{{ user.name }}/{{ aur.dir }}/ruby-compass
|
|
tags:
|
|
- aur
|
|
- ruby-dev
|
|
become: yes
|
|
become_user: "{{ user.name }}"
|
|
|
|
- name: Build and install Compass
|
|
command: "{{ aur.makepkg }} chdir=/home/{{ user.name }}/{{ aur.dir }}/ruby-compass"
|
|
tags:
|
|
- aur
|
|
- ruby-dev
|
|
become: yes
|
|
become_user: "{{ user.name }}"
|