added more hyprland packages

This commit is contained in:
Matthew Stobbs
2025-02-28 16:22:21 -07:00
parent 91cdc5056c
commit 5faa2ae1f3
8 changed files with 106 additions and 7 deletions

View File

@@ -18,28 +18,36 @@
repo: "{{ aquamarine.repo }}"
version: "{{ aquamarine.vers }}"
- name: Configure hyprwayland-scanner
- name: Configure aquamarine
ansible.builtin.command:
creates: "{{ aquamarine.git_path }}/build"
chdir: "{{ aquamarine.git_path }}"
argv:
- cmake
- --no-warn-unused-cli
- DCMAKE_BUILD_TYPE=Release
- -DCMAKE_INSTALL_PREFIX={{ path.prefix }}
- -S
- .
- -B
- build
- ./build
- name: Build hyprwayland-scanner
- name: Build aquamarine
ansible.builtin.command:
creates: "{{ aquamarine.git_path }}/build/"
chdir: "{{ aquamarine.git_path }}"
argv:
- cmake
- --build
- build
- ./build
- --config
- Release
- --target
- all
- -j
- "{{ ansible_processor_nproc|int }}"
- name: Install hyprwayland-scanner
- name: Install aquamarine
become: "{{ ext_become }}"
ansible.builtin.command:
creates: "{{ path.bin }}/aquamarine"
@@ -47,4 +55,4 @@
argv:
- cmake
- --install
- build
- ./build