forked from rolffokkens/bdsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCOMPILING
More file actions
30 lines (26 loc) · 837 Bytes
/
COMPILING
File metadata and controls
30 lines (26 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Minimum compiling instructions
==============================
Ubuntu 16.04 and 18.04
======================
# install utilities for building software (and wget and aunpack)
sudo apt install build-essential checkinstall wget
# install specific libraries that bdsync needs
sudo apt install libssl-dev pandoc
# download and unzip bdsync
wget https://github.com/rolffokkens/bdsync/archive/master.zip
unzip bdsync.zip
# compile bdsync
cd bdsync-master/
make
# done -- you'll find bdsync in current path
CentOS/RedHat/Fedora
====================
# install utilities for building software (and wget)
sudo yum install openssl-devel gcc pandoc wget
# download and unzip bdsync
wget https://github.com/rolffokkens/bdsync/archive/master.zip
unzip bdsync.zip
# compile bdsync
cd bdsync-master/
make
# done -- you'll find bdsync in current path