File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -40,15 +40,23 @@ install_system_deps() {
40
40
" ubuntu" )
41
41
sudo apt update
42
42
sudo apt install -y build-essential curl wget file libssl-dev libgtk-3-dev libwebkit2gtk-4.1-dev libsoup-3.0-dev libayatana-appindicator3-dev librsvg2-dev pkg-config
43
+ # Deps for git2 and ssh2
44
+ sudo apt install -y openssl-devel pkgconf perl-FindBin perl-IPC-Cmd perl
43
45
;;
44
46
" fedora" )
45
47
sudo dnf install -y gcc gcc-c++ make curl wget file openssl-devel gtk3-devel webkit2gtk4.1-devel libsoup3-devel libayatana-appindicator-gtk3-devel librsvg2-devel pkgconf-pkg-config
48
+ # Deps for git2 and ssh2
49
+ sudo dnf install -y openssl-devel pkgconf perl-FindBin perl-IPC-Cmd perl
46
50
;;
47
51
" arch" )
48
52
sudo pacman -S --needed --noconfirm base-devel curl wget file openssl gtk3 webkit2gtk-4.1 libsoup3 libayatana-appindicator librsvg pkgconf
53
+ # Deps for git2 and ssh2
54
+ sudo pacman -S --needed --noconfirm openssl-devel pkgconf perl-FindBin perl-IPC-Cmd perl
49
55
;;
50
56
" opensuse" )
51
57
sudo zypper install -y gcc gcc-c++ make curl wget file libopenssl-devel gtk3-devel webkit2gtk3-devel libsoup3-devel libayatana-appindicator3-devel librsvg-devel pkg-config
58
+ # Deps for git2 and ssh2
59
+ sudo zypper install -y openssl-devel pkgconf perl-FindBin perl-IPC-Cmd perl
52
60
;;
53
61
* )
54
62
print_error " Unsupported Linux distribution: $DISTRO "
You can’t perform that action at this time.
0 commit comments