From 6ff4db7fdb4da5797a5bc79b3adb8a72369ecec5 Mon Sep 17 00:00:00 2001 From: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Date: Sat, 10 Aug 2024 14:00:09 -0500 Subject: [PATCH] Update _common.sh Explicitly install pkgconfig --- scripts/_common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 396c10e..6dca421 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -13,7 +13,8 @@ install_borg_with_pip () { venvpy="$install_dir/venv/bin/python3" ynh_exec_as "$app" "$venvpy" -m pip install --upgrade setuptools wheel - + ynh_exec_as "$app" "$venvpy" -m pip install pkgconfig + BORG_VERSION=$(ynh_app_upstream_version) ynh_exec_as "$app" "$venvpy" -m pip install borgbackup[pyfuse3]=="$BORG_VERSION" }