working on hyprland packages

Signed-off-by: Matthew Stobbs <matthew@stobbs.ca>
This commit is contained in:
Matthew Stobbs
2026-02-02 16:01:28 -07:00
parent c613a29ce4
commit b9fdf03298
5 changed files with 56 additions and 56 deletions

View File

@@ -4,6 +4,7 @@
# General configuration
clean_install: false
clean_cache: false
build_jobs: "{{ ansible_processor_nproc | int }}"
install_become: true
install_become_user: root
install_method: system
@@ -31,6 +32,7 @@ path_git: "{{ store_path }}/git"
path_go: "{{ install_prefix }}/go"
path_pipx: "{{ install_prefix }}/pipx"
store_path: "{{ ansible_user_dir }}/.cache/ansible_role_package"
path_lib: "{{ install_prefix }}/lib"
# System paths

View File

@@ -17,6 +17,9 @@ ansible_lint_install_methods:
ansible_install_methods:
- system
- system_pip
# hyprland packages
aquamarine_install_methods:
- source
yazi_install_methods:
- source
- cargo

View File

@@ -4,58 +4,5 @@ aquamarine:
gitrepo: "{{ hyprgitbase }}/aquamarine"
src_path: "{{ d_tempdir.path }}/aquamarine"
deps:
RedHat:
- hwdata-devel
- libdisplay-info-devel
- libdrm-devel
- libinput-devel
- libseat-devel
- mesa-libgbm-devel
- systemd-devel
- wayland-devel
- wayland-protocols-devel
Alpine:
- build-base
- elogind-dev
- hwdata-dev
- libdisplay-info-dev
- libdrm-dev
- libinput-dev
- libseat-dev
- mesa-gbm
- mesa-dev
- wayland-dev
- wayland-protocols
configure:
- cmake
- --no-warn-unused-cli
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_INSTALL_PREFIX={{ root_prefix }}
- -S
- .
- -B
- ./build
build_creates: "{{ d_tempdir.path }}/build/libaquamarine.so"
build:
- cmake
- --build
- ./build
- --config
- Release
- --target
- all
- -j
- "{{ ansible_processor_nproc | int }}"
install_creates: "{{ root_prefix }}/{{ lib_path }}/libaquamarine.so"
install:
- cmake
- --install
- ./build
build_installed_files:
- "{{ lib_path }}/libaquamarine.so.0.8.0"
- "{{ lib_path }}/libaquamarine.so.7"
- "{{ lib_path }}/libaquamarine.so.0.7.2"
- "{{ lib_path }}libaquamarine.so.6"
- "{{ lib_path }}/libaquamarine.so"
- include/aquamarine
- "{{ lib_path }}/pkgconfig/aquamarine.pc"