PACKAGING 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Packaging hints for binary package distributors
  2. ===============================================
  3. Although the source of the bison package comes as a single package,
  4. in distributions of binary packages the installed files should
  5. be split into two packages:
  6. bison-runtime
  7. Contents: Runtime libraries and programs.
  8. Audience: Anyone who wants to run internationalized programs
  9. that contain Bison-generated parsers.
  10. bison
  11. Contents: Tools and documentation for developers that use Bison.
  12. Audience: Anyone who wants to develop programs that use parsers.
  13. Dependencies: requires bison-runtime.
  14. The 'bison-runtime' binary package is much smaller than the 'bison'
  15. binary package. It should be included in any distribution that
  16. contains localized programs that use the diagnostics contained in
  17. Bison-generated parsers.
  18. If you want to install both packages at the same time, you simply do
  19. at the toplevel directory:
  20. ./configure
  21. make
  22. make install
  23. After installation, the file
  24. $prefix/share/locale/*/LC_MESSAGES/bison-runtime.mo
  25. belongs to the bison-runtime package; all other installed files belong
  26. to the bison package.
  27. -----
  28. Copyright (C) 2002, 2005, 2009-2015, 2018-2021 Free Software Foundation,
  29. Inc.
  30. This file is part of Bison, the GNU Compiler Compiler.
  31. This program is free software: you can redistribute it and/or modify
  32. it under the terms of the GNU General Public License as published by
  33. the Free Software Foundation, either version 3 of the License, or
  34. (at your option) any later version.
  35. This program is distributed in the hope that it will be useful,
  36. but WITHOUT ANY WARRANTY; without even the implied warranty of
  37. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  38. GNU General Public License for more details.
  39. You should have received a copy of the GNU General Public License
  40. along with this program. If not, see <https://www.gnu.org/licenses/>.