From d63f4e9c299f222e0826b126a0de206bc590d70c Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 29 Dec 2016 21:09:47 +0100 Subject: inital debian packaging 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 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 +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 +Source: http://git.helsinki.at/?p=rhlibrary.git;a=summary + +Files: * +Copyright: 2016, Christian Pointner +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 . + +Files: debian/* +Copyright: 2016, Christian Pointner +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) -- cgit v0.10.2