summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2006-04-02 11:22:06 +0000
committerLex Spoon <lex@lexspoon.org>2006-04-02 11:22:06 +0000
commit2163b93a5148f966d068a617354c14e26fb389d1 (patch)
tree9f7426d574ca1fb87f0bf249bbf4094b8b626241 /debian/control
parentdd40ea8aeb15c2bbbc7d3713bfdeeeb46f7a04bf (diff)
downloadscala-2163b93a5148f966d068a617354c14e26fb389d1.tar.gz
scala-2163b93a5148f966d068a617354c14e26fb389d1.tar.bz2
scala-2163b93a5148f966d068a617354c14e26fb389d1.zip
added material for building Debian packages
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control37
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000000..a479aecea8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,37 @@
+Source: scala
+Section: devel
+Priority: optional
+Maintainer: Lex Spoon <lex@debian.org>
+Standards-Version: 3.6.1
+Build-Depends: java-compiler, ant
+
+Package: scala
+Architecture: all
+Depends: scala-library, scala-dev
+Recommends: sbaz
+Description: The Scala programming language
+ Scala is a Java-compatible programming language with many
+ modern language features. It is Java-compatible in that
+ Scala and Java classes can directly reference each other,
+ subclass each other, and send messages to each other. It
+ includes modern language features such as closures,
+ pattern-matching, parametric types, and virtual type members.
+ .
+ This package depends on all of the basic packages a typical
+ Scala enthusiast would want.
+
+
+Package: scala-library
+Architecture: all
+Depends: java-virtual-machine
+Description: The Scala standard library
+ The Scala standard library. This is needed to run Scala programs.
+
+Package: scala-dev
+Architecture: all
+Depends: scala-library, java-virtual-machine
+Description: The Scala development tools
+ This package includes the various tools used to develop
+ code written in Scala. It includes a compiler (scalac),
+ a convenient command-runner (scala), an interpreter
+ (scalaint), and a source-scanning document generator (scaladoc).