This file is indexed.

/usr/share/doc/autoproject/README is in autoproject 0.20-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
	autoproject - create a skeleton source package for a new program

autoproject interviews the user, then creates a source package for a
new program which follows the GNU programming standards.  The new
package uses autoconf to configure itself, and automake to create the
Makefile.  `make distcheck' succeeds.

The idea is that you execute autoproject just once when you start a
new project.  It will ask a few questions, then create a new directory
and populate it with standard files, customized for the new project.

The version number for the new program is initialized as 0.1.0, and is
set in configure.in.  It is available in C programs as the macro
VERSION, and in the Makefile as $(VERSION).

Optionally, the new package will use an external command line parser
or a parser generator.  Currently, autoproject supports:

 	argp by Miles Bader, included in GNU C Library 2.1
	clig by Harald Kirsch <kirschh@lionbioscience.com> 
                (see http://wsd.iitb.fhg.de/~kir/clighome/)
        autogen by Bruce Korb <bkorb@gnu.org>
                (see http://AutoGen.SourceForge.net/autoopts/)

I would like to support graphical user interface (GUI) as well as
command line interface (CLI) programs, but I have very little
experience with them.  Contributions would be welcome.

For the latest version, check here:
	http://jrv.oddones.org
	ftp://metalab.unc.edu/pub/Linux/devel

autoproject itself is distributed under the GNU General Public License.
As a special exception to the GNU General Public License, you may
use the files generated by autoproject without any restriction.


	- James R. Van Zandt <jrvz at comcast.net>