remove extra build pkgs

This commit is contained in:
Matthew Stobbs
2025-01-26 08:39:26 -07:00
parent d1b3e19df2
commit e1c330be7b
5 changed files with 4 additions and 32 deletions

View File

@@ -1,4 +0,0 @@
---
- name: add dotenv-linter to cargopkgs
ansible.builtin.set_fact:
cargopkgs: "{{ cargopkgs + ['dotenv-linter'] }}"

View File

@@ -1,4 +0,0 @@
---
- name: add eza to cargopkgs
ansible.builtin.set_fact:
cargopkgs: "{{ cargopkgs + ['eza'] }}"

View File

@@ -1,5 +0,0 @@
---
- name: add htmx-lsp to cargopkgs
ansible.builtin.set_fact:
cargopkgs: "{{ cargopkgs + ['htmx-lsp'] }}"

View File

@@ -1,5 +0,0 @@
---
- name: add starship to cargopkgs
ansible.builtin.set_fact:
cargopkgs: "{{ cargopkgs + ['starship'] }}"

View File

@@ -1,25 +1,15 @@
--- ---
- name: build and install neovide - ansible.builtin.set_fact:
become: true cargopkgs: "{{ cargopkgs + ['neovide'] }}"
ansible.builtin.command:
cmd:
- cargo
- install
- --root
- "{% if ansible_os_family != 'Linux' %}.{% else %}{{ pkgconfig.neovide.install_prefix }}{% endif %}"
- --git
- "{{ pkgconfig.neovide.git_repo }}"
- --tag
- "{{ pkgconfig.neovide.version }}"
- name: Copy neovide icon - name: Copy neovide icon
become: true become: true
ansible.builtin.copy: ansible.builtin.copy:
src: neovide/icon.png src: neovide/icon.png
dest: "{{ pkgconfig.neovide.install_prefix }}/share/icons/neovide.png" dest: "{{ pkgconfig_neovide.install_prefix }}/share/icons/neovide.png"
- name: Copy neovide.desktop - name: Copy neovide.desktop
become: true become: true
ansible.builtin.template: ansible.builtin.template:
src: neovide/neovide.desktop src: neovide/neovide.desktop
dest: "{{ pkgconfig.neovide.install_prefix }}/share/applications/neovide.desktop" dest: "{{ pkgconfige_neovide.install_prefix }}/share/applications/neovide.desktop"