summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGravatar Roland Dreier <roland@digitalvampire.org>2011-10-31 13:05:56 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-10-31 17:06:41 -0700
commit06ddeba47ee75e4ac0ca96e75e8b01b1fb9a60c9 (patch)
treeef91cc7b1b9608b31d593de605eeabc749b27939 /packaging
parent4d561234022adbc72e30c3152730b6202f3f0f8f (diff)
downloadsubsurface-06ddeba47ee75e4ac0ca96e75e8b01b1fb9a60c9.tar.gz
Add Debian packaging
Add support for building .deb packages; to use, one can do $ cp -r packaging/debian debian $ dpkg-buildpackage -b This of course requires a libdivecomputer package as a build prerequisite. Signed-off-by: Roland Dreier <roland@digitalvampire.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'packaging')
-rw-r--r--packaging/debian/changelog5
-rw-r--r--packaging/debian/compat1
-rw-r--r--packaging/debian/control15
-rw-r--r--packaging/debian/copyright17
-rwxr-xr-xpackaging/debian/rules5
-rw-r--r--packaging/debian/source/format1
6 files changed, 44 insertions, 0 deletions
diff --git a/packaging/debian/changelog b/packaging/debian/changelog
new file mode 100644
index 000000000..875e3eb14
--- /dev/null
+++ b/packaging/debian/changelog
@@ -0,0 +1,5 @@
+subsurface (1.1-20111026-git036fccd3-1) unstable; urgency=low
+
+ * Initial release.
+
+ -- Roland Dreier <roland@digitalvampire.org> Tue, 25 Oct 2011 14:24:12 -0700
diff --git a/packaging/debian/compat b/packaging/debian/compat
new file mode 100644
index 000000000..45a4fb75d
--- /dev/null
+++ b/packaging/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/packaging/debian/control b/packaging/debian/control
new file mode 100644
index 000000000..7c2aa36e2
--- /dev/null
+++ b/packaging/debian/control
@@ -0,0 +1,15 @@
+Source: subsurface
+Priority: optional
+Maintainer: Roland Dreier <roland@digitalvampire.org>
+Build-Depends: autoconf, automake, libtool, debhelper (>= 8), dh-autoreconf,
+ pkg-config, libgtk2.0-dev, libgconf2-dev, libxml2-dev, libdivecomputer-dev
+Standards-Version: 3.9.2
+Section: utils
+Homepage: http://subsurface.hohndel.org
+
+Package: subsurface
+Section: utils
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: simple dive log program written in C
+ Subsurface is a simple dive log program written in C.
diff --git a/packaging/debian/copyright b/packaging/debian/copyright
new file mode 100644
index 000000000..cd049e032
--- /dev/null
+++ b/packaging/debian/copyright
@@ -0,0 +1,17 @@
+Initial Debianization:
+This package was debianized by Roland Dreier <roland@digitalvampire.org> on
+Tue, 25 Oct 2011 04:22:07 -0700.
+
+It was downloaded from git://subsurface.hohndel.org/subsurface.git
+
+Copyright:
+
+Copyright 2011 Linus Torvalds
+Copyright 2011 Dirk Hohndel
+
+License:
+
+GPLv2
+
+On Debian systems, the complete text of the GNU General Public License
+version 2 can be found in the file '/usr/share/common-licenses/GPL-2'
diff --git a/packaging/debian/rules b/packaging/debian/rules
new file mode 100755
index 000000000..e984e9b28
--- /dev/null
+++ b/packaging/debian/rules
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+
+%:
+ dh $@
diff --git a/packaging/debian/source/format b/packaging/debian/source/format
new file mode 100644
index 000000000..163aaf8d8
--- /dev/null
+++ b/packaging/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)