add an initial debian package structure

pull/1/head
Michael Zanetti 2014-05-01 23:36:01 +02:00
parent 40b91f4dbd
commit c4e8a9afa7
7 changed files with 81 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
guh (0.1) trusty; urgency=low
* Initial release.
-- Michael Zanetti <michael_zanetti@gmx.net> Sat, 27 Apr 2014 22:00:53 +0100

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

15
debian/control vendored Normal file
View File

@ -0,0 +1,15 @@
Source: guh
Section: utils
Priority: optional
Maintainer: Michael Zanetti <michael_zanetti@gmx.net>
Build-Depends: debhelper (>= 8.0.0),
qt5-default,
qtbase5-dev,
Standards-Version: 3.9.3
Package: guh
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
Description: guh server
Add some description.

36
debian/copyright vendored Normal file
View File

@ -0,0 +1,36 @@
This package was debianized by Michael Zanetti <michael_zanetti@gmx.net> on
Sat, 09 Apr 2011 18:13:12 +0200.
Upstream Author(s):
Michael Zanetti <michael_zanetti@gmx.net>
Copyright:
<Copyright (C) 2011 Michael Zanetti>
License:
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 package; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
The Debian packaging is (C) 2011, unknown <micha@unknown> and
is licensed under the GPL, see above.
# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.

1
debian/guh.debhelper.log vendored Normal file
View File

@ -0,0 +1 @@
dh_auto_configure

22
debian/rules vendored Executable file
View File

@ -0,0 +1,22 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
export QT_QPA_PLATFORM=minimal
override_dh_auto_configure:
/usr/local/qt5pi/bin/qmake .
override_dh_auto_build:
make
override_dh_clean:
dh_clean
override_dh_install:
dh_install --fail-missing
%:
dh $@ --parallel

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (native)