diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-13 18:16:30 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-13 18:16:30 +0000 |
commit | 0410a6e0ccfe1bf6fd917a4cc06d4bdfdd980b8d (patch) | |
tree | dfac9119ea780a1800a8cf7e3ac2380327b03b36 /PACKAGING | |
parent | a7db4add018f1136b01e11b4252df8b6a9ddbd4b (diff) | |
download | bison-0410a6e0ccfe1bf6fd917a4cc06d4bdfdd980b8d.tar.gz |
* PACKAGING: New file, suggested by Bruno Haible and taken from
similar wording in gettext's PACKAGING file.
* NEWS: Mention PACKAGING.
* Makefile.am (EXTRA_DIST): Add PACKAGING.
Diffstat (limited to 'PACKAGING')
-rw-r--r-- | PACKAGING | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/PACKAGING b/PACKAGING new file mode 100644 index 00000000..2b7d08c1 --- /dev/null +++ b/PACKAGING @@ -0,0 +1,56 @@ +Packaging hints for binary package distributors +=============================================== + +Although the source of the bison package comes as a single package, +in distributions of binary packages the installed files should +be split into two packages: + + bison-runtime + Contents: Runtime libraries and programs. + Audience: Anyone who wants to run internationalized programs + that contain Bison-generated parsers. + + bison + Contents: Tools and documentation for developers that use Bison. + Audience: Anyone who wants to develop programs that use parsers. + Dependencies: requires bison-runtime. + +The 'bison-runtime' binary package is much smaller than the 'bison' +binary package. It should be included in any distribution that +contains programs that use the diagnostics contained in +Bison-generated parsers, e.g., Gawk, GCC, Perl. + +If you want to install both packages at the same time, you simply do +at the toplevel directory: + + ./configure + make + make install + +After installation, the files + + $prefix/share/locale/*/LC_MESSAGES/bison-runtime.mo + +belong to the bison-runtime package; all other installed files belong +to in the bison package. + +----- + +Copyright (C) 2002, 2005 Free Software Foundation, Inc. + +This file is part of Bison, the GNU Compiler Compiler. + +Bison is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +Bison is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with autoconf; see the file COPYING. If not, write to +the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +Boston, MA 02110-1301, USA. |