From 48dbed11f7185a59c69701481c71f95e0cb02027 Mon Sep 17 00:00:00 2001 From: Arjen Baart Date: Sat, 16 May 2020 15:54:26 +0200 Subject: [PATCH] Created Debian package --- .gitignore | 2 +- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 12 ++++++++++++ debian/copyright | 19 +++++++++++++++++++ debian/rules | 4 ++++ debian/source/format | 1 + 7 files changed, 43 insertions(+), 1 deletion(-) 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 create mode 100644 debian/source/format diff --git a/.gitignore b/.gitignore index 374a7f4..4166aae 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ configure missing ylwrap m4 -debian +autom4te.cache diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..eae936c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +xmldoc (0.10-1) UNRELEASED; urgency=medium + + * Initial release. (Closes: #XXXXXX) + + -- Arjen Baart Fri, 15 May 2020 08:43:03 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..dbdf04e --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: xmldoc +Maintainer: Arjen Baart +Section: Text_Processing +Priority: extra +Standards-Version: 3.9.2 +Build-Depends: debhelper (>=9) + +Package: xmldoc +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: XML document preparation + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..fd29cf0 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,19 @@ +Files: * +Copyright: 2002-2020 Arjen Baart +License: GPL-2+ + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..4f2c774 --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f +%: + dh $@ + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..af745b3 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (git) -- 2.11.0