Source: %(PROJ_NAME)
Section: devel
Priority: optional
Maintainer: %(FULLNAME)
Standards-Version: 1:3.3.3-2

Package: %(PROJ_NAME)
Architecture: any
Depends: FIXME 
Description: A simple template system.
 New is a template system, especially useful in conjunction with a simple
 text editor such as vi. The user maintains templates which may contain
 format strings. At run time, new replaces the format strings in a template
 with appropriate values to create a new file.
 For example, given the following template:
 //   FILE: %%(FILE)
 // AUTHOR: %%(FULLNAME)
 //   DATE: %%(DATE)
 // Copyright (C) 1999 %%(FULLNAME) %%(EMAIL)
 // All rights reserved.
 new will create:
 //   FILE: foo.cpp
 // AUTHOR: W. Michael Petullo
 //   DATE: 11 September 1999
 // Copyright (C) 1999 W. Michael Petullo new@flyn.org
 // All rights reserved.
 on my computer.
 The program understands plaintext or [2]gziped template files.
 Building new also creates a shared library, libtemplate, which allows
 the programmer access to new's functionality.
