15 lines
212 B
YAML
15 lines
212 B
YAML
- name: Install development tools
|
|
become: yes
|
|
pacman:
|
|
name:
|
|
- gcc
|
|
- make
|
|
- cmake
|
|
- autoconf
|
|
- which
|
|
- git
|
|
- w3m
|
|
- gnupg
|
|
- fakeroot
|
|
state: present
|