From 30fe096b851bb427a0e5930a5c8b21a5a1a8d948 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81=28Buo-Ren=20Lin=29?= Date: Tue, 13 Mar 2018 16:45:56 +0800 Subject: [PATCH] doc: BUILDING: Debian: Don't install the entire Git distribution just for cloning the repo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The download and disk usage difference is apparent and should be avoided when possible ``` $ apt show git-core git 2>/dev/null | grep '^Installed-Size' Installed-Size: 8,192 B Installed-Size: 24.1 MB ``` Signed-off-by: ๆž—ๅšไป --- BUILDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index 2b356cb4..4a6b3b23 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -54,7 +54,7 @@ The same process works for building the code in any platform supported by Qt ### Ubuntu Linux ```bash -$ sudo apt install build-essential git cmake libsqlite3-dev qt5-default qttools5-dev-tools \ +$ sudo apt install build-essential git-core cmake libsqlite3-dev qt5-default qttools5-dev-tools \ libsqlcipher-dev $ git clone https://github.com/sqlitebrowser/sqlitebrowser $ cd sqlitebrowser