X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0f644e242ef37c911ad3dc25aca8135c339de349..1e4caa330d9c522e7094686916d3324c3e814ffa:/services/fuse/fpm-info.sh diff --git a/services/fuse/fpm-info.sh b/services/fuse/fpm-info.sh index 6cf69fb782..8ede312d86 100644 --- a/services/fuse/fpm-info.sh +++ b/services/fuse/fpm-info.sh @@ -2,4 +2,19 @@ # # SPDX-License-Identifier: AGPL-3.0 +# We depend on the fuse package because arv-mount may run the `fusermount` tool. fpm_depends+=(fuse) + +case "$TARGET" in + centos*|rocky*) + # We depend on libfuse for llfuse. + # We should declare a libcurl dependency, but it's a little academic + # because rpm itself depends on it, so we can be pretty sure it's installed. + fpm_depends+=(fuse-libs) + ;; + debian* | ubuntu*) + # We depend on libfuse2 for llfuse. + # We depend on libcurl because the Python SDK does for its Keep client. + fpm_depends+=(libfuse2 libcurl3-gnutls) + ;; +esac