Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1.    Go to pbspro directory which we have cloned (git clone https://github.com/PBSPro/pbspro)
2.    Change directory to src/pbs    List of files available at pbspro directory.
                 [user@hostname pbspro]# cd src/pbs
                 [user@hostname pbs]# ls
                 autogen.sh  configure.ac  doc      LICENSE  Makefile.am      pbspro-rpmlintrc  README     src   win_configure
                 buildutils  COPYRIGHT     INSTALL  m4       PBS_License.txt  pbspro.spec       README.md  test
3.    Run autogen.sh script to generate configure script and makefile
                ./autogen.sh
                (generates configure script and makefile templates)
4.    Run ./configure
5.    Run the below command
                make dist
                make dist generates .tar.gz (pbspro-<pbs_version>.tar.gz) file in the same directory.
6.    Move the pbspro-<pbs_version>.tar.gz file to ~/rpmbuild/SOURCES
7.    Move pbspro/src/pbspro.spec file to  ~/rpmbuild/SPECS
8.    Change directory to ~/rpmbuild/SPECS
9.    Run the below command
                  rpmbuild -ba pbspro.spec         ( This command will generate below rpm packages in ~/rpmbuild/RPMS dirctory)

...