port hyprgraphics to using helpers
This commit is contained in:
@@ -1,6 +1,32 @@
|
||||
# vim: set filetype=yaml.ansible :
|
||||
---
|
||||
hyprgraphics:
|
||||
src_path: "{{ d_tempdir.path }}/hyprgraphics"
|
||||
configure:
|
||||
- cmake
|
||||
- --no-warn-unused-cli
|
||||
- DCMAKE_BUILD_TYPE=Release
|
||||
- -DCMAKE_INSTALL_PREFIX={{ hyprland.prefix }}
|
||||
- -S
|
||||
- .
|
||||
- -B
|
||||
- ./build
|
||||
build_creates: "{{ d_tempdir.path }}/hyprgraphics/build/libhyprgraphics.so"
|
||||
build:
|
||||
- cmake
|
||||
- --build
|
||||
- ./build
|
||||
- --config
|
||||
- Release
|
||||
- --target
|
||||
- all
|
||||
- -j
|
||||
- "{{ ansible_processor_nproc | int }}"
|
||||
install_creates: "{{ root_prefix }}/{{ lib_path }}/libhyprgraphics.so.0.1.2"
|
||||
install:
|
||||
- cmake
|
||||
- --install
|
||||
- ./build
|
||||
deps:
|
||||
RedHat:
|
||||
- pixman-devel
|
||||
|
||||
Reference in New Issue
Block a user