Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[README] Rework Dependency Install & lrelease note #71

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 12 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,35 +79,7 @@ echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

### Dependencies install
```
cd ~
sudo apt-get install -y ntp
sudo apt-get install -y git
sudo apt-get install -y build-essential
sudo apt-get install -y libssl-dev
sudo apt-get install -y libdb-dev
sudo apt-get install -y libdb++-dev
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y libqrencode-dev
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y curl
sudo apt-get install -y libzip-dev

sudo apt-get update -y

sudo apt-get install -y git
sudo apt-get install -y make
sudo apt-get install -y automake
sudo apt-get install -y yasm
sudo apt-get install -y binutils
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y openssl
sudo apt-get install -y libgmp-dev
sudo apt-get install -y libtool
sudo apt-get install -y qt5-default
sudo apt-get install -y qttools5-dev-tools
sudo apt-get install -y miniupnpc
sudo apt-get install -y qt5-qmake
sudo apt-get install -y libevent-dev
cd ~ && sudo su && apt-get -y update && apt-get install -y ntp git build-essential libssl-dev libdb-dev libdb++-dev libboost-all-dev libqrencode-dev libcurl4-openssl-dev curl libzip-dev git make automake yasm binutils libcurl4-openssl-dev openssl libgmp-dev libtool qt5-default qttools5-dev-tools miniupnpc qt5-qmake libevent-dev && exit
```

### Dependencies build and link
Expand All @@ -134,6 +106,17 @@ cd DigitalNote

### Build DigitalNote daemon

Note: You may encounter a warning after running qmake simular to the following

`
Info: creating stash file /root/DigitalNote/.qmake.stash
Project MESSAGE: Building without UPNP support
lrelease warning: Met no 'TRANSLATIONS' entry in project file '/root/DigitalNote/DigitalNote.daemon.pro'
`

You may continue forward with the make proccess without issue.


With UPNP:
```
qmake -qt=qt5 DigitalNote.daemon.pro USE_UPNP=1
Expand Down