NZBGet is a cross-platform program which works on many platforms including many POSIX systems.
This article explains how to compile NZBGet from sources on a POSIX system. For cross compiling tips please refer to Cross compiling. Linux users can use universal installer which includes precompiled binaries for many CPU architectures - see Installation on Linux.
NZBGet absolutely needs the following libraries:
And the following libraries are optional:
For curses-output-mode:
or (better)
For encrypted connections (TLS/SSL):
or
All these libraries are included in modern Linux distributions and should be available as installable packages. Please note that you also need the developer packages for these libraries too, they package names have often suffix “dev” or “devel”. On other systems you may need to download the libraries at the given URLs and compile them (see hints below).
It is also recommended to install pkg-config to help the configure-script find dependencies.
You also need a working C++ compiler.
Example: The following command installs all packages required to compile NZBGet on Debian/Ubuntu:
sudo apt-get install build-essential libncurses5-dev libssl-dev libxml2-dev zlib1g-dev pkg-config -y
NZBGet uses modern C++ features and requires a C++ compiler supporting C++14 ISO standard. The configure-script performs a basic check and fails if C++ compiler doesn’t provide required support. In special cases the check can be disabled (not recommended), see configure options below. For details see Prerequisites for C++ compiler.
tar -zxf nzbget-VERSION-src.tar.gz
cd nzbget-VERSION
./configure
maybe you have to tell configure, where to find some libraries, see Configure-options below. Extra flags are needed on FreeBSD, see section Troubleshooting: Make and GNU Make below.
make
su
make install
NOTE: if you want to spare some space on the drive you can install the stripped version (which is much smaller) of the binary instead:
make install-strip
The stripped version doesn’t include any debugging symbols. You shouldn’t do stripping if you compile the binary in debug mode (using ./configure –enable-debug).
NOTE: if you do not have root-access or do not want to install the program system-wide, you can omit the install-step and copy the compiled binary “nzbget” into any location you want.
You may run configure with additional arguments:
NZBGet can check and repair downloaded files for you. For this purpose it uses par2-module (based on par2cmdline) which is integrated into nzbget’s source code tree.
If for some reason you have troubles compiling units belonging to par2-module you can make nzbget without support for par-check using option --disable-parcheck:
./configure --disable-parcheck
For curses-outputmode you need ncurses or curses on your system. If you do not have one of them you can download and compile ncurses yourself. Following configure-parameters may be useful:
--with-libcurses-includes=/path/to/curses/includes
--with-libcurses-libraries=/path/to/curses/libraries
If you are not able to use curses or ncurses or do not want them you can make the program without support for curses using option --disable-curses:
./configure --disable-curses
To enable encrypted server connections (TLS/SSL) you need to build the program with TLS/SSL support. NZBGet can use two libraries: GnuTLS or OpenSSL. Configure-script checks which library is installed and use it. If both are available it gives the precedence to OpenSSL. You may override that with the option --with-tlslib=(GnuTLS, OpenSSL). For example to build whith GnuTLS:
./configure --with-tlslib=GnuTLS
Following configure-parameters may be useful:
--with-libgnutls-includes=/path/to/gnutls/includes
--with-libgnutls-libraries=/path/to/gnutls/libraries
--with-openssl-includes=/path/to/openssl/includes
--with-openssl-libraries=/path/to/openssl/libraries
If none of these libraries is available you can make the program without TLS/SSL support using option --disable-tls:
./configure --disable-tls
For CPU optimized code NZBGet needs to compile different units with different complier
flags. That requires dynamic changing of compiler flags within makefile. Unfortunately not every make
supports this, in particular default make
on FreeBSD fails to build NZBGet
with message
make[3]: don't know how to make CXXFLAGS+=. Stop
A solution here is to use “GNU make” instead. Install it with:
pkg install gmake
When launching NZBGet configure script pass alternative path to make
:
./configure MAKE=/usr/local/bin/gmake
NZBGet needs a configuration file. After make install an example configuration file nzbget.conf is installed into /usr/shared/nzbget/nzbget.conf. Use command:
make install-conf
This command copies the configuration file into /etc/nzbget.conf and makes few changes in the file to adjust to your system paths. If you don’t want the file to be system wide available you can instead of “make install-conf” copy the file into your home directory, open the file in a text editor and make sure the option ConfigTemplate is set properly. All other options can be edited later via web-interface.
The program looks for configuration file in following standard locations (in this order):
On POSIX systems:
You can use any other path and name but then you need to pass the full filename of the configuration file when starting NZBGet:
nzbget -c /path/to/nzbget.conf -D
If you put the configuration file in other place, you can use command- line switch “-c
In special cases you can run program without configuration file using switch “-n”. You need to use switch “-o” to pass required configuration options via command-line.
After the download of nzb-file is completed NZBget can call post-process-scripts, defined in configuration file.
NZBGet distribution comes with two example scripts.
For more information see Post-processing scripts.