~ubuntu-branches/ubuntu/edgy/bc/edgy

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2002-04-13 11:33:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020413113349-13xjv23rme03ctut
Tags: 1.06-8
* debian/control: Priority changed to standard as per overrides file
* debian/control: Standards-Version upgraded to 3.5.0
* debian/copyright: Debian/GNU Linux typo fix (lintian)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Source: bc
 
2
Section: math
 
3
Priority: standard
 
4
Maintainer: Dirk Eddelbuettel <edd@debian.org>
 
5
Standards-Version: 3.5.0
 
6
Build-Depends: bison, debhelper (>= 3.0.0), file, flex, libreadline4-dev, texi2html, texinfo
 
7
 
 
8
Package: bc
 
9
Architecture: any
 
10
Depends: ${shlibs:Depends}
 
11
Description: The GNU bc arbitrary precision calculator language
 
12
 GNU bc is an interactive algebraic language with arbitrary precision which
 
13
 follows the POSIX 1003.2 draft standard, with several extensions including
 
14
 multi-character variable names, an `else' statement and full Boolean 
 
15
 expressions.  GNU bc does not require the separate GNU dc program.
 
16
 
 
17
Package: dc
 
18
Architecture: any
 
19
Depends: ${shlibs:Depends}
 
20
Description: The GNU dc arbitrary precision reverse-polish calculator
 
21
 GNU dc is a reverse-polish desk calculator which supports unlimited 
 
22
 precision arithmetic.  It also allows you to define and call macros. 
 
23
 .
 
24
 A reverse-polish calculator stores numbers on a stack. Entering a number
 
25
 pushes it on the stack.  Arithmetic operations pop arguments off the 
 
26
 stack and push the results.