blob: c3d3a601c64dcb219728a769bfa57030f1df1bb0 [file] [log] [blame]
Tomas Cejka43380f12015-06-25 22:43:20 +02001#!/bin/bash
2
3if which apt-get >/dev/null 2>/dev/null; then
4sudo apt-get update -qq -y
Michal Vasko58c10712016-03-16 08:49:25 +01005sudo apt-get install -qq -y git libjson-c-dev pkg-config libtool cmake
Tomas Cejkae53c51e2015-06-26 20:22:44 +02006wget 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
7sudo dpkg -i ./libjson-c-dev_0.11-3ubuntu1.2_amd64.deb libjson-c2_0.11-3ubuntu1.2_amd64.deb
Tomas Cejka43380f12015-06-25 22:43:20 +02008else
Michal Vasko58c10712016-03-16 08:49:25 +01009sudo yum install -y git json-c-devel pkg-config libtool cmake
Tomas Cejka43380f12015-06-25 22:43:20 +020010fi
11
12(
Michal Vasko58c10712016-03-16 08:49:25 +010013wget -q https://red.libssh.org/attachments/download/195/libssh-0.7.3.tar.xz&&
14tar -xf libssh-0.7.3.tar.xz&&mkdir lssh&&cd lssh&&cmake ~/libssh-0.7.3&&sudo make install
Tomas Cejka43380f12015-06-25 22:43:20 +020015)
16
17(
18git clone git://github.com/cejkato2/libwebsockets lws&&mkdir lws/b&&cd lws/b&&cmake ..&&sudo make install
19)
20
21(
Michal Vasko58c10712016-03-16 08:49:25 +010022git clone git://github.com/CESNET/libyang && cd libyang && cmake . && make && sudo make install
Tomas Cejka43380f12015-06-25 22:43:20 +020023)
24
25(
Michal Vasko58c10712016-03-16 08:49:25 +010026git clone git://github.com/CESNET/libnetconf2 && cd libnetconf2 && cmake . && make && sudo make install
Tomas Cejka43380f12015-06-25 22:43:20 +020027)
28