14 lines
208 B
YAML
14 lines
208 B
YAML
|
# install pb
|
||
|
---
|
||
|
- name: clone pb
|
||
|
git:
|
||
|
repo: 'https://tildegit.org/tomasino/pb'
|
||
|
dest: /usr/src/pb
|
||
|
force: yes
|
||
|
|
||
|
- name: install pb
|
||
|
make:
|
||
|
chdir: /usr/src/pb
|
||
|
target: install
|
||
|
become: yes
|