README-hacking 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. - Git <http://git.or.cz>
  13. Up-to-date compilers and libraries are also recommended, for better
  14. static checking. You may be able to use an older compiler by building
  15. with 'make WERROR_CFLAGS='; if so, don't worry about its false alarms.
  16. * Bootstrapping
  17. Obviously, if you are reading these notes, you did manage to clone
  18. tar from Git. The next step is to get other files needed to build,
  19. which are extracted from other source packages:
  20. 1. Change to the source tree directory
  21. cd tar
  22. 2. Run
  23. ./bootstrap
  24. Once done, proceed as described in the file README (section
  25. INSTALLATION).
  26. Normally you will have to run bootstrap only once. However, if you
  27. intend to hack on GNU tar, you might need to run it again later.
  28. There are lots of options that you may find useful in this case.
  29. See 'bootstrap --help' for a detailed list.
  30. * Copyright information
  31. Copyright 2007-2022 Free Software Foundation, Inc.
  32. This file is part of GNU tar.
  33. GNU tar is free software; you can redistribute it and/or modify
  34. it under the terms of the GNU General Public License as published by
  35. the Free Software Foundation; either version 3 of the License, or
  36. (at your option) any later version.
  37. GNU tar is distributed in the hope that it will be useful,
  38. but WITHOUT ANY WARRANTY; without even the implied warranty of
  39. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  40. GNU General Public License for more details.
  41. You should have received a copy of the GNU General Public License
  42. along with this program. If not, see <http://www.gnu.org/licenses/>.
  43. ^L
  44. Local Variables:
  45. mode: outline
  46. paragraph-separate: "[ ^L]*$"
  47. version-control: never
  48. End: