diff options
author | cbdev <cb@cbcdn.com> | 2019-12-04 23:02:20 +0100 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-12-04 23:02:20 +0100 |
commit | 7360766777a7969b76fa306f7381d2d51efa1ebe (patch) | |
tree | da4159af3c353b839089e688b48c272076f03049 | |
parent | 8979c52e767791f97f462835a9e4c5e66d1112cc (diff) | |
download | midimonster-7360766777a7969b76fa306f7381d2d51efa1ebe.tar.gz midimonster-7360766777a7969b76fa306f7381d2d51efa1ebe.tar.bz2 midimonster-7360766777a7969b76fa306f7381d2d51efa1ebe.zip |
Initial debianization for v0.2
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 17 | ||||
-rw-r--r-- | debian/copyright | 7 | ||||
-rw-r--r-- | debian/gbp.conf | 4 | ||||
-rw-r--r-- | debian/menu | 2 | ||||
-rw-r--r-- | debian/midimonster.doc-base.EX | 9 | ||||
-rwxr-xr-x | debian/rules | 8 | ||||
-rw-r--r-- | debian/source/format | 1 |
9 files changed, 54 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e18af1f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +midimonster (0.2-1) unstable; urgency=low + + * Initial release (Closes: #nnnn) + + -- cbdev <cb@cbcdn.com> Wed, 04 Dec 2019 20:45:01 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..2e71d5c --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: midimonster +Section: utils +Priority: optional +Maintainer: cbdev <cb@cbcdn.com> +Build-Depends: debhelper (>= 11) +Standards-Version: 4.1.3 +Homepage: https://midimonster.tech/ +Vcs-Browser: https://github.com/cbdevnet/midimonster +Vcs-Git: https://github.com/cbdevnet/midimonster + +Package: midimonster +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Multi-protocol translation tool + The MIDIMonster allows the user to translate any channel on one protocol + into channel(s) on any other (or the same) supported protocol. + Supported protocols include ArtNet, OSC, MIDI, sACN, and many more. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d557460 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,7 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: midimonster +Source: https://github.com/cbdevnet/midimonster + +Files: * +Copyright: 2017-2019 cbdev/Fabian J. Stumpf <cb@cbcdn.com> +License: BSD-2-clause diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..33b58a1 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +debian-branch = debian/master +upstream-branch = master +upstream-tag = v%(version)s diff --git a/debian/menu b/debian/menu new file mode 100644 index 0000000..ea1e6ff --- /dev/null +++ b/debian/menu @@ -0,0 +1,2 @@ +?package(midimonster):needs="text" section="Applications/Sound"\ + title="midimonster" command="/usr/bin/midimonster" diff --git a/debian/midimonster.doc-base.EX b/debian/midimonster.doc-base.EX new file mode 100644 index 0000000..5acd953 --- /dev/null +++ b/debian/midimonster.doc-base.EX @@ -0,0 +1,9 @@ +Document: midimonster +Title: MIDIMonster documentation +Author: Fabian J. Stumpf +Abstract: The MIDIMonster documentation contains information on how to configure and use the MIDIMonster, most importantly the backend documentation. +Section: unknown + +Format: HTML +Index: /usr/share/doc/midimonster/html/index.html +Files: /usr/share/doc/midimonster/html/*.html diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b1782ca --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +#export DH_VERBOSE = 1 +export PREFIX=/usr +export PLUGINS=${PREFIX}/lib/midimonster +export DEFAULT_CFG=/etc/midimonster/midimonster.cfg + +%: + dh $@ 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) |