26 lines
498 B
YAML
Raw Normal View History

2023-06-24 17:57:19 -07:00
- name: Install nnn dependencies
tags: ["test"]
dnf:
name:
- readline-devel
state: present
become: true
- name: Clone nnn repo
tags: ["test"]
ansible.builtin.git:
repo: https://github.com/jarun/nnn.git
dest: /home/{{ user }}/tmp/nnn
- name: Compile nnn
shell: |
make O_NERD=1
args:
chdir: /home/{{ user }}/tmp/nnn
- name: Move nnn to .local bin
copy:
src: /home/{{ user }}/tmp/nnn/nnn
dest: /home/{{ user }}/.local/bin/nnn
mode: a+x