summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authordypa <dypa@bk.ru>2013-07-30 06:40:16 -0700
committerdypa <dypa@bk.ru>2013-07-30 06:40:16 -0700
commit1ae27fb227939dc2debb69bb02530ae183663367 (patch)
tree3cb1644bd22c45b1cbde95b022c01b0d6d784408 /INSTALL.md
parent3f85bdca15d2f0258413039978b6552965385335 (diff)
replace make install to checkinstall for linux installation
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index c3deec36..d309cbcd 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -5,7 +5,7 @@
5Build dependencies: 5Build dependencies:
6 6
7```bash 7```bash
8apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev 8apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev checkinstall
9``` 9```
10 10
11You should get and install [libsodium](https://github.com/jedisct1/libsodium): 11You should get and install [libsodium](https://github.com/jedisct1/libsodium):
@@ -15,7 +15,7 @@ cd libsodium
15git checkout tags/0.4.2 15git checkout tags/0.4.2
16./autogen.sh 16./autogen.sh
17./configure && make check 17./configure && make check
18sudo make install 18sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc
19sudo ldconfig 19sudo ldconfig
20``` 20```
21 21