Tomas Cejka | 43380f1 | 2015-06-25 22:43:20 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | if which apt-get >/dev/null 2>/dev/null; then |
| 4 | sudo apt-get update -qq -y |
Michal Vasko | 58c1071 | 2016-03-16 08:49:25 +0100 | [diff] [blame^] | 5 | sudo apt-get install -qq -y git libjson-c-dev pkg-config libtool cmake |
Tomas Cejka | e53c51e | 2015-06-26 20:22:44 +0200 | [diff] [blame] | 6 | wget http://security.ubuntu.com/ubuntu/pool/main/j/json-c/libjson-c-dev_0.11-3ubuntu1.2_amd64.deb http://security.ubuntu.com/ubuntu/pool/main/j/json-c/libjson-c2_0.11-3ubuntu1.2_amd64.deb |
| 7 | sudo dpkg -i ./libjson-c-dev_0.11-3ubuntu1.2_amd64.deb libjson-c2_0.11-3ubuntu1.2_amd64.deb |
Tomas Cejka | 43380f1 | 2015-06-25 22:43:20 +0200 | [diff] [blame] | 8 | else |
Michal Vasko | 58c1071 | 2016-03-16 08:49:25 +0100 | [diff] [blame^] | 9 | sudo yum install -y git json-c-devel pkg-config libtool cmake |
Tomas Cejka | 43380f1 | 2015-06-25 22:43:20 +0200 | [diff] [blame] | 10 | fi |
| 11 | |
| 12 | ( |
Michal Vasko | 58c1071 | 2016-03-16 08:49:25 +0100 | [diff] [blame^] | 13 | wget -q https://red.libssh.org/attachments/download/195/libssh-0.7.3.tar.xz&& |
| 14 | tar -xf libssh-0.7.3.tar.xz&&mkdir lssh&&cd lssh&&cmake ~/libssh-0.7.3&&sudo make install |
Tomas Cejka | 43380f1 | 2015-06-25 22:43:20 +0200 | [diff] [blame] | 15 | ) |
| 16 | |
| 17 | ( |
| 18 | git clone git://github.com/cejkato2/libwebsockets lws&&mkdir lws/b&&cd lws/b&&cmake ..&&sudo make install |
| 19 | ) |
| 20 | |
| 21 | ( |
Michal Vasko | 58c1071 | 2016-03-16 08:49:25 +0100 | [diff] [blame^] | 22 | git clone git://github.com/CESNET/libyang && cd libyang && cmake . && make && sudo make install |
Tomas Cejka | 43380f1 | 2015-06-25 22:43:20 +0200 | [diff] [blame] | 23 | ) |
| 24 | |
| 25 | ( |
Michal Vasko | 58c1071 | 2016-03-16 08:49:25 +0100 | [diff] [blame^] | 26 | git clone git://github.com/CESNET/libnetconf2 && cd libnetconf2 && cmake . && make && sudo make install |
Tomas Cejka | 43380f1 | 2015-06-25 22:43:20 +0200 | [diff] [blame] | 27 | ) |
| 28 | |