once you get an src rpm , install it
rpm -ivh <filename.src.rpm>
then chek in /usr/src/redhat/SPECS/<filename.spec> or /usr/local/redhat/SPECS/<filename.spec>(you can edit spec file to ur requirement by setting proper configuration options)
go to spec directory
and run
rpm -bi <filename.spec>
it places the builded rpm in /usr/src/redhat/RPMS/ or the other path
|