From 82d5beeee94f47fc6366e470b2469fbf497c330b Mon Sep 17 00:00:00 2001 From: Anthony Bilinski Date: Tue, 15 Oct 2019 00:43:33 -0700 Subject: [PATCH] fix(docs): add sqlcipher to required arch deps --- INSTALL.md | 2 +- simple_make.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index 45ea8c3d9..138fb7fca 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -250,7 +250,7 @@ corresponding parts. #### Arch Linux ```bash -sudo pacman -S --needed base-devel qt5 openal libxss qrencode ffmpeg opus libvpx libsodium +sudo pacman -S --needed base-devel qt5 openal libxss qrencode ffmpeg opus libvpx libsodium sqlcipher ``` diff --git a/simple_make.sh b/simple_make.sh index f1d93a11c..1761d1817 100755 --- a/simple_make.sh +++ b/simple_make.sh @@ -62,6 +62,7 @@ pacman_install() { opus qrencode qt5 + sqlcipher ) sudo pacman -S --needed "${pacman_packages[@]}" }