README-hacking 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. These notes intend to help people working on the Git version of
  2. this package.
  3. * Requirements
  4. You need the following packages to build the Git version of GNU
  5. tar. We do not make any efforts to accommodate older versions of
  6. these packages, so please make sure that you have the latest stable
  7. version.
  8. - Automake <http://www.gnu.org/software/automake/>
  9. - Autoconf <http://www.gnu.org/software/autoconf/>
  10. - M4 <http://www.gnu.org/software/m4/>
  11. - Texinfo <http://www.gnu.org/software/texinfo>
  12. - Gnulib <http://www.gnu.org/software/gnulib>
  13. - Git <http://git.or.cz>
  14. * Bootstrapping
  15. Obviously, if you are reading these notes, you did manage to clone
  16. tar from Git. The next step is to get other files needed to build,
  17. which are extracted from other source packages:
  18. 1. Change to the source tree directory
  19. cd tar
  20. 2. Run
  21. ./bootstrap
  22. Once done, proceed as described in the file README (section
  23. INSTALLATION).
  24. Normally you will have to run bootstrap only once. However, if you
  25. intend to hack on GNU tar, you might need to run it again later. In
  26. this case, you will probably want to save some time and bandwidth by
  27. avoiding downloading the same files again. If so, create in GNU tar
  28. root directory the file named `.bootstrap' with the following
  29. contents:
  30. --gnulib-srcdir=$HOME/gnulib
  31. Replace `$HOME/gnulib' with the actual directory where the Gnulib
  32. sources reside.
  33. For more information about `bootstrap', run `bootstrap --help'.
  34. * Copyright information
  35. Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
  36. Permission is granted to anyone to make or distribute verbatim copies
  37. of this document as received, in any medium, provided that the
  38. copyright notice and this permission notice are preserved,
  39. thus giving the recipient permission to redistribute in turn.
  40. Permission is granted to distribute modified versions
  41. of this document, or of portions of it,
  42. under the above conditions, provided also that they
  43. carry prominent notices stating who last changed them.
  44. ^L
  45. Local Variables:
  46. mode: outline
  47. paragraph-separate: "[ ^L]*$"
  48. version-control: never
  49. End: