13 lines
178 B
YAML
13 lines
178 B
YAML
- name: Install development tools
|
|
become: yes
|
|
pacman:
|
|
name:
|
|
- gcc
|
|
- make
|
|
- cmake
|
|
- which
|
|
- git
|
|
- w3m
|
|
- gnupg
|
|
state: present
|