CentOS 7 Custom OpenSSL RPM Packages
I. Environment Preparation1.1 Install RPM packaging, testing essential development tools$ yum install -y rpm-build rpmlint rpmdevtools
1.2 Install the dependencies required for packaging and compiling$ yum install -y gcc gcc-c++ make perl perl-WWW-Curl
II. Make the RPM package for OpenSSL
Note:
Remember! Do not use the root user to perform the packaging operation. This is dangerous because all binaries will be installed on the system before packaging, so you should package as a normal ...