README-hacking 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 2007-2009, 2013-2014 Free Software Foundation, Inc.
  36. This file is part of GNU tar.
  37. GNU tar is free software; you can redistribute it and/or modify
  38. it under the terms of the GNU General Public License as published by
  39. the Free Software Foundation; either version 3 of the License, or
  40. (at your option) any later version.
  41. GNU tar is distributed in the hope that it will be useful,
  42. but WITHOUT ANY WARRANTY; without even the implied warranty of
  43. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  44. GNU General Public License for more details.
  45. You should have received a copy of the GNU General Public License
  46. along with this program. If not, see <http://www.gnu.org/licenses/>.
  47. ^L
  48. Local Variables:
  49. mode: outline
  50. paragraph-separate: "[ ^L]*$"
  51. version-control: never
  52. End: