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