Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2005-07-15 05:26:31 +0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-15 22:38:24 +0400
commit7421abfdbdfb34ad2719ce4fcf720450918cc4fc (patch)
tree59e372570a0afdeb77b726762ca57d0dadd6de66 /debian/control
parent49ce3d0c4e732bbabb7a2bda1d89d80eeb76d5b6 (diff)
[PATCH] Initial support for building a debian package (.deb)
It's not any harder to include debian package support than to include a spec file so here is the setup to build the equivalent debian package. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control17
1 files changed, 17 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000000..b62268c6a3
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: git-core
+Section: devel
+Priority: optional
+Maintainer: Linus Torvalds <torvalds@osdl.org>
+Build-Depends-Indep: libz-dev, libssl-dev, libcurl3-dev, asciidoc > 6.0.3, xmlto, debhelper (>= 4.0.0)
+Standards-Version: 3.6.1
+
+Package: git-core
+Architecture: any
+Depends: ${shlibs:Depends}, shellutils, diff, rysnc, rcs
+Description: The git content addressable filesystem
+ GIT comes in two layers. The bottom layer is merely an extremely fast
+ and flexible filesystem-based database designed to store directory trees
+ with regard to their history. The top layer is a SCM-like tool which
+ enables human beings to work with the database in a manner to a degree
+ similar to other SCM tools (like CVS, BitKeeper or Monotone).
+