I want to install BIND9 with its source code on Linux (CentOS 6.3), we know by using yum install bind*
we don't get the source code, we get only the binary files.
Can anybody explain to me how to install BIND with its whole source code especially the .c
files by using source RPM?
Something like this:
$ yumdownloader --source module-init-tools
rpm -ivh whatever.srpm
), then depending on your change (configuration options - make them in the .spec file) actual code changes you'd untar the tarball in SOURCES directory, make changes, re-tar it back up, and rebuild the RPM using the .spec file in SPEC dir. – slm Aug 23 '13 at 16:26