Build a release from a tarball
masterTo build OpenSSH from a stable release tarball, extract the archive, run the pre-built configure script with your desired options, and use make to build and test the binaries. If you intend to install OpenSSH to a specific system location, use destination path flags (such as --prefix) during the configuration step.
tar zxvf openssh-X.YpZ.tar.gz
cd openssh
./configure # [options]
make && make tests