Fix missing pkg-configure

This commit is contained in:
SebClem 2023-02-17 15:14:42 +01:00
parent 4a7175e7d6
commit ec2f405ab1
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50
2 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,9 @@
--- ---
- name: Install build dependencies
ansible.builtin.package:
name: "{{ borg_dependent_packages }}"
state: present
- name: Install dependent Python Packages - name: Install dependent Python Packages
ansible.builtin.pip: ansible.builtin.pip:
name: "{{ borg_dependent_python_packages }}" name: "{{ borg_dependent_python_packages }}"

View File

@ -5,6 +5,9 @@ borg_dependent_python_packages:
- cython - cython
- pkgconfig - pkgconfig
borg_dependent_packages:
- pkg-config
borg_python_packages: borg_python_packages:
- name: borgbackup - name: borgbackup
version: "{{ borg_version }}" version: "{{ borg_version }}"