summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-12-29 20:09:47 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-12-29 20:09:47 (GMT)
commitd63f4e9c299f222e0826b126a0de206bc590d70c (patch)
tree1e79a73621bb964916bded33c0ff1e3ee8bf69fa
parentbacdc106a584dc5034830e96fe67d132a72a127b (diff)
inital debian packaging
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control13
-rw-r--r--debian/copyright36
-rw-r--r--debian/install1
-rwxr-xr-xdebian/rules15
-rw-r--r--debian/source/format1
7 files changed, 72 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..170a40b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+rhlibrary (0.1-1) unstable; urgency=medium
+
+ * Initial release.
+
+ -- Christian Pointner <equinox@helsinki.at> Thu, 29 Dec 2016 20:53:49 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c9277da
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: rhlibrary
+Section: net
+Priority: optional
+Maintainer: Christian Pointner <equinox@helsinki.at>
+Build-Depends: debhelper (>=9), golang-go (>=2:1.5), git, ca-certificates, libgstreamer1.0-dev
+Standards-Version: 3.9.5
+
+Package: rhlibrary
+Architecture: i386 amd64 armhf armel
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: Radio Helsinki Rivendell Library
+ This is small program that allows users to listen to files imported into
+ Rivendell at Radio Helsinki.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4a05da9
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: rhlibrary
+Upstream-Contact: Christian Pointner <equinox@helsinki.at>
+Source: http://git.helsinki.at/?p=rhlibrary.git;a=summary
+
+Files: *
+Copyright: 2016, Christian Pointner <equinox@helsinki.at>
+License: GPL-3+
+ rhlibrary 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 3 of the License, or
+ any later version.
+ .
+ rhlibrary 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 rhlibrary. If not, see <http://www.gnu.org/licenses/>.
+
+Files: debian/*
+Copyright: 2016, Christian Pointner <equinox@helsinki.at>
+License: GPL-3+
+ This program 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 3 of the License, or
+ (at your option) any later version.
+ .
+ This program 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 '/usr/share/common-licenses/GPL-3'.
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..ed5bf6f
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+usr/bin/rhlibrary
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..8ca02d1
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+%:
+ dh $@
+
+override_dh_auto_configure:
+
+override_dh_auto_build:
+ $(MAKE) build
+
+override_dh_auto_clean:
+ $(MAKE) distclean
+
+override_dh_auto_install:
+ install -d $$(pwd)/debian/tmp/usr/bin/
+ install -m 755 $$(pwd)/bin/rhlibrary $$(pwd)/debian/tmp/usr/bin/
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)