diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 11 | ||||
-rw-r--r-- | debian/copyright | 15 | ||||
-rw-r--r-- | debian/files | 2 | ||||
-rwxr-xr-x | debian/rules | 5 | ||||
-rw-r--r-- | debian/source/format | 1 |
7 files changed, 40 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8c3da68 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +qmidiplayer (0.6.2-1) UNRELEASED; urgency=low + + * Initial release. (Closes: #XXXXXX) + + -- chrisoft <chirs241097@gmail.com> Fri, 15 Jan 2016 19:29:07 +0800 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..c686b55 --- /dev/null +++ b/debian/control @@ -0,0 +1,11 @@ +Source: qmidiplayer +Maintainer: Chris Xiong <chirs241097@gmail.com> +Section: sound +Priority: optional +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 9), qtbase5-dev, qt5-qmake, libfluidsynth-dev + +Package: qmidiplayer +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Midi player based on Qt and fluidsynth.
\ No newline at end of file diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5fa9a7d --- /dev/null +++ b/debian/copyright @@ -0,0 +1,15 @@ +QMidiPlayer, a cross-platform player for midi files. +Copyright (C) 2015 Chris Xiong + +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 <http://www.gnu.org/licenses/>. diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..c38ebc6 --- /dev/null +++ b/debian/files @@ -0,0 +1,2 @@ +qmidiplayer-dbg_0.6.2-1_amd64.deb debug extra +qmidiplayer_0.6.2-1_amd64.deb misc optional diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..414e9c8 --- /dev/null +++ b/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f +%: + dh $@ +override_dh_auto_install: + $(MAKE) INSTALL_ROOT=$$(pwd)/debian/qmidiplayer prefix=/usr install
\ No newline at end of file diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..46ebe02 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)
\ No newline at end of file |