From f102c1b3160e304e086544652e166e884547616b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 17 Oct 2007 16:41:33 -0400 Subject: add --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 14 ++++++++++++++ debian/copyright | 5 +++++ debian/rules | 30 ++++++++++++++++++++++++++++++ 5 files changed, 55 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..51dc153 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ + (0.1) unstable; urgency=low + + * First release. + + -- Joey Hess diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..81b5c35 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: +Section: utils +Priority: optional +Build-Depends: debhelper (>= 5) +Maintainer: Joey Hess +Standards-Version: 3.7.2 +Homepage: +Vcs-Git: + +Package: +Architecture: all +Section: +Depends: +Description: diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..24c49f0 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,5 @@ +Files: * +Copyright: (c) 2007 Joey Hess +License: GPL-2+ + On Debian systems, the complete text of the GPL can be found in + /usr/share/common-licenses/GPL. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..cc95420 --- /dev/null +++ b/debian/rules @@ -0,0 +1,30 @@ +#!/usr/bin/make -f + +build: + +clean: + dh_testdir + dh_testroot + dh_clean + +binary-arch: build + +binary-indep: build + dh_testdir + dh_testroot + dh_clean -k + dh_install + dh_installdocs + dh_installexamples + dh_installman + dh_installchangelogs + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary -- cgit v1.2.3