add the rest of hyprland deps
This commit is contained in:
8
tasks/config/hyprland_protocols.yml
Normal file
8
tasks/config/hyprland_protocols.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
- name: Set hyperland-protocols config
|
||||
ansible.builtin.set_fact:
|
||||
hyprland_protocols:
|
||||
vers: "{{ pkgconfig.hyprland_protocols.version }}"
|
||||
repo: "{{ pkgconfig.hyprland_protocols.repo }}"
|
||||
build_deps: "{{ pkgconfig.hyprland_protocols.build_deps[ansible_os_family] }}"
|
||||
installed_files: "{{ pkgconfig.hyprland_protocols.build_installed_files }}"
|
||||
git_path: "{{ d_tempdir.path }}/hyperland-protocols"
|
||||
9
tasks/config/sdbus_cpp_2.yml
Normal file
9
tasks/config/sdbus_cpp_2.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: Set sdbus-cpp-2 config
|
||||
ansible.builtin.set_fact:
|
||||
sdbus_cpp_2:
|
||||
vers: "{{ pkgconfig.sdbus_cpp_2.version }}"
|
||||
repo: "{{ pkgconfig.sdbus_cpp_2.repo }}"
|
||||
build_deps: "{{ pkgconfig.sdbus_cpp_2.build_deps[ansible_os_family] }}"
|
||||
git_path: "{{ d_tempdir.path }}/sdbus-cpp"
|
||||
prefix: "/usr/local"
|
||||
clean: "{{ pkgconfig.sdbus_cpp_2.clean }}"
|
||||
8
tasks/config/xdg_desktop_portal_hyprland.yml
Normal file
8
tasks/config/xdg_desktop_portal_hyprland.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
- name: Set xdg-desktop-portal-hyprland config
|
||||
ansible.builtin.set_fact:
|
||||
xdg_desktop_portal_hyprland:
|
||||
vers: "{{ pkgconfig.xdg_desktop_portal_hyprland.version }}"
|
||||
repo: "{{ pkgconfig.xdg_desktop_portal_hyprland.repo }}"
|
||||
pkg_deps: "{{ pkgconfig.xdg_desktop_portal_hyprland.pkg_deps }}"
|
||||
build_deps: "{{ pkgconfig.xdg_desktop_portal_hyprland.build_deps[ansible_os_family] }}"
|
||||
|
||||
4
tasks/pkgs/hyprland_protocols.yml
Normal file
4
tasks/pkgs/hyprland_protocols.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
- name: Append to pkg lists
|
||||
ansible.builtin.set_fact:
|
||||
pkg_sys: "{{ pkg_sys + hyprland_protocols.build_deps }}"
|
||||
pkg_src: "{{ pkg_src + ['hyprland_protocols'] }}"
|
||||
4
tasks/pkgs/sdbus_cpp_2.yml
Normal file
4
tasks/pkgs/sdbus_cpp_2.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
- name: Append to pkg list
|
||||
ansible.builtin.set_fact:
|
||||
pkg_sys: "{{ pkg_sys + sdbus_cpp_2.build_deps }}"
|
||||
pkg_src: "{{ pkg_src + ['sdbus_cpp_2'] }}"
|
||||
13
tasks/pkgs/xdg_desktop_portal_hyprland.yml
Normal file
13
tasks/pkgs/xdg_desktop_portal_hyprland.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
- name: Ensure pkg_deps are added
|
||||
loop: "{{ xdg_desktop_portal_hyprland.pkg_deps }}"
|
||||
loop_control:
|
||||
loop_var: pkg_dep
|
||||
vars:
|
||||
pkg: "{{ pkg_dep }}"
|
||||
ansible.builtin.include_tasks:
|
||||
file: addpkg.yml
|
||||
|
||||
- name: Append to pkg_src
|
||||
ansible.builtin.set_fact:
|
||||
pkg_sys: "{{ pkg_sys + xdg_desktop_portal_hyprland.build_deps }}"
|
||||
pkg_src: "{{ pkg_src + ['xdg_desktop_portal_hyprland'] }}"
|
||||
48
tasks/src/hyprland_protocols.yml
Normal file
48
tasks/src/hyprland_protocols.yml
Normal file
@@ -0,0 +1,48 @@
|
||||
- name: Remove existing install
|
||||
when:
|
||||
- hyprland_protocols.clean
|
||||
become: true
|
||||
loop: "{{ hyprland_protocols.installed_files }}"
|
||||
loop_control:
|
||||
loop_var: file
|
||||
ansible.builtin.file:
|
||||
state: absent
|
||||
path: "{{ hyprland_protocols.prefix }}/{{ file }}"
|
||||
|
||||
- name: Check if hyprland-protocols is installed
|
||||
register: stat_hyprland_protocols_inst
|
||||
ansible.builtin.stat:
|
||||
path: "{{ hyprland_protocols.prefix }}/share/hyprland-protocols/protocols/hyprland-ctm-control-v1.xml"
|
||||
|
||||
- name: Build and install hyprland-protocols
|
||||
when:
|
||||
- not stat_hyprland_protocols_inst.stat.exists
|
||||
block:
|
||||
- name: Clone git repository
|
||||
ansible.builtin.git:
|
||||
depth: 1
|
||||
recursive: true
|
||||
dest: "{{ hyprland_protocols.git_path }}"
|
||||
repo: "{{ hyprland_protocols.repo }}"
|
||||
version: "{{ hyprland_protocols.vers }}"
|
||||
|
||||
- name: Build hyprland-protocols
|
||||
ansible.builtin.command:
|
||||
creates: "{{ hyprland_protocols.git_path }}/build/build.ninja"
|
||||
chdir: "{{ hyprland_protocols.git_path }}"
|
||||
argv:
|
||||
- meson
|
||||
- setup
|
||||
- --prefix={{ hyrpland.prefix }}
|
||||
- build
|
||||
|
||||
- name: Install hyprland-protocols
|
||||
become: true
|
||||
ansible.builtin.command:
|
||||
creates: "{{ hyprland_protocols.prefix }}/share/hyprland-protocols/protocols/hyprland-ctm-control-v1.xml"
|
||||
chdir: "{{ hyprland_protocols.git_path }}"
|
||||
argv:
|
||||
- meson
|
||||
- install
|
||||
- -C
|
||||
- build
|
||||
@@ -1,7 +1,7 @@
|
||||
- name: Remove existing install
|
||||
when:
|
||||
- hyprland_clean
|
||||
become: "{{ ext_become }}"
|
||||
become: true
|
||||
loop: "{{ hyprlang.installed_files }}"
|
||||
loop_control:
|
||||
loop_var: file
|
||||
|
||||
66
tasks/src/sdbus_cpp_2.yml
Normal file
66
tasks/src/sdbus_cpp_2.yml
Normal file
@@ -0,0 +1,66 @@
|
||||
- name: Remove existing install
|
||||
when:
|
||||
- sdbus_cpp_2.clean
|
||||
become: true
|
||||
loop: "{{ sdbus_cpp_2.installed_files }}"
|
||||
loop_control:
|
||||
loop_var: file
|
||||
ansible.builtin.file:
|
||||
state: absent
|
||||
path: "{{ sdbus_cpp_2.prefix }}/{{ file }}"
|
||||
|
||||
- name: Check if sdbus-cpp-2 is installed
|
||||
register: stat_sdbus_cpp_2_inst
|
||||
ansible.builtin.stat:
|
||||
path: "{{ sdbus_cpp_2.prefix }}/lib64/libsdbus-c++.so"
|
||||
|
||||
- name: Build and install sdbus-cpp-2
|
||||
when:
|
||||
- not stat_sdbus_cpp_2_inst.stat.exists
|
||||
block:
|
||||
- name: Clone git repository
|
||||
ansible.builtin.git:
|
||||
depth: 1
|
||||
recursive: true
|
||||
dest: "{{ sdbus_cpp_2.git_path }}"
|
||||
repo: "{{ sdbus_cpp_2.repo }}"
|
||||
version: "{{ sdbus_cpp_2.vers }}"
|
||||
|
||||
- name: Configure sdbus-cpp-2
|
||||
ansible.builtin.command:
|
||||
creates: "{{ sdbus_cpp_2.git_path }}/build"
|
||||
chdir: "{{ sdbus_cpp_2.git_path }}"
|
||||
argv:
|
||||
- cmake
|
||||
- --no-warn-unused-cli
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
- -dDCMAKE_INSTALL_PREFIX={{ sdbus_cpp_2.prefix }}
|
||||
- -S
|
||||
- .
|
||||
- -B
|
||||
- ./build
|
||||
|
||||
- name: Build sdbus-cpp-2
|
||||
ansible.builtin.command:
|
||||
creates: "{{ sdbus_cpp_2.git_path }}/build/Makefile"
|
||||
chdir: "{{ sdbus_cpp_2.git_path }}"
|
||||
argv:
|
||||
- cmake
|
||||
- --build
|
||||
- ./build
|
||||
- --config
|
||||
- Release
|
||||
- --target
|
||||
- all
|
||||
- -j
|
||||
- "{{ ansible_processor_nproc|int }}"
|
||||
|
||||
- name: Install sdbus_cpp_2
|
||||
become: true
|
||||
ansible.builtin.command:
|
||||
creates: "{{ sdbus_cpp_2.prefix }}/lib64/libsdbus-c++.so"
|
||||
chdir: "{{ sdbus_cpp_2.git_path }}"
|
||||
argv:
|
||||
- cmake
|
||||
- --install
|
||||
- ./build
|
||||
63
tasks/src/xdg_desktop_portal_hyprland.yml
Normal file
63
tasks/src/xdg_desktop_portal_hyprland.yml
Normal file
@@ -0,0 +1,63 @@
|
||||
- name: Remove existing install
|
||||
when:
|
||||
- hyprland_clean
|
||||
become: "{{ ext_become }}"
|
||||
loop: "{{ xdg_desktop_portal_hyprland.installed_files }}"
|
||||
loop_control:
|
||||
loop_var: file
|
||||
ansible.builtin.file:
|
||||
state: absent
|
||||
path: "{{ hyprland.prefix }}/{{ file }}"
|
||||
|
||||
- name: Check if xdg_desktop_portal_hyprland is installed
|
||||
register: stat_xdg_desktop_portal_hyprland_bin
|
||||
ansible.builtin.stat:
|
||||
path: "{{ hyprland.prefix }}/bin/hyprland-share-picker"
|
||||
|
||||
- name: Build and install xdg_desktop_portal_hyprland
|
||||
when:
|
||||
- not stat_xdg_desktop_portal_hyprland_bin.stat.exists
|
||||
block:
|
||||
- name: Clone git repository
|
||||
ansible.builtin.git:
|
||||
depth: 1
|
||||
dest: "{{ xdg_desktop_portal_hyprland.git_path }}"
|
||||
recursive: true
|
||||
repo: "{{ xdg_desktop_portal_hyprland.repo }}"
|
||||
version: "{{ xdg_desktop_portal_hyprland.vers }}"
|
||||
|
||||
- name: Configure xdg_desktop_portal_hyprland
|
||||
ansible.builtin.command:
|
||||
creates: "{{ xdg_desktop_portal_hyprland.git_path }}/build"
|
||||
chdir: "{{ xdg_desktop_portal_hyprland.git_path }}"
|
||||
argv:
|
||||
- cmake
|
||||
- -DCMAKE_INSTALL_LIBEXECDIR={{ hyprland.prefix }}/lib
|
||||
- -DCMAKE_INSTALL_PREFIX={{ hyprland.prefix }}
|
||||
- -B
|
||||
- ./build
|
||||
|
||||
- name: Build xdg_desktop_portal_hyprland
|
||||
ansible.builtin.command:
|
||||
creates: "{{ xdg_desktop_portal_hyprland.git_path }}/build/xdg-desktop-portal-hyprland"
|
||||
chdir: "{{ xdg_desktop_portal_hyprland.git_path }}"
|
||||
argv:
|
||||
- cmake
|
||||
- --build
|
||||
- ./build
|
||||
- --config
|
||||
- Release
|
||||
- --target
|
||||
- all
|
||||
- -j
|
||||
- "{{ ansible_processor_nproc|int }}"
|
||||
|
||||
- name: Install xdg_desktop_portal_hyprland
|
||||
become: true
|
||||
ansible.builtin.command:
|
||||
creates: "{{ path.bin }}/hyprland-share-picker"
|
||||
chdir: "{{ xdg_desktop_portal_hyprland.git_path }}"
|
||||
argv:
|
||||
- cmake
|
||||
- --install
|
||||
- ./build
|
||||
Reference in New Issue
Block a user