feat: add initial debian packaging template; for PPA
This commit is contained in:
parent
0ac635a1ca
commit
6bd84d57b5
|
|
@ -1,9 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=quickgui
|
||||
Comment=A Flutter frontend for quickemu
|
||||
Exec=/usr/bin/quickgui
|
||||
Name=Quickgui
|
||||
Comment=An elegant virtual machine manager for the desktop
|
||||
Exec=quickgui
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=quickgui_512.png
|
||||
Categories=System;
|
||||
Icon=quickgui
|
||||
Categories=Development;System;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
quickgui (1.2.9-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Martin Wimpress <code@wimpress.io> Fri, 25 Feb 2022 08:27:45 +0100
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
Source: quickgui
|
||||
Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Martin Wimpress <code@wimpress.io>
|
||||
Build-Depends:
|
||||
debhelper-compat (= 12),
|
||||
Standards-Version: 4.5.1
|
||||
Homepage: https://github.com/quickemu-project/quickgui
|
||||
Vcs-Browser: https://github.com/quickemu-project/quickgui
|
||||
Vcs-Git: https://github.com/quickemu-project/quickgui.git
|
||||
Rules-Requires-Root: no
|
||||
|
||||
Package: quickgui
|
||||
Architecture: any
|
||||
Depends:
|
||||
zenity,
|
||||
${misc:Depends},
|
||||
${shlibs:Depends},
|
||||
Recommends:
|
||||
quickemu,
|
||||
Description: An elegant virtual machine manager for the desktop
|
||||
An elegant desktop application to quickly create an run optimised virtual
|
||||
machines using Quickget and Quickemu.
|
||||
.
|
||||
Nearly 1000 operating systems supported including Windows, macOS, BSDs, and
|
||||
100s of Linux distros. All with automated download and configuration.
|
||||
.
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: quickgui
|
||||
Upstream-Contact: Martin Wimpress <code@wimpress.io>
|
||||
Source: https://github.com/quickemu-project/quickgui
|
||||
|
||||
Files: *
|
||||
Copyright: 2021 - 2024 Yannick Mauray <yannick.mauray@gmail.com>
|
||||
License: MIT
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
# If you want to use GPL v2 or later for the /debian/* files use
|
||||
# the following clauses, or change it to suit. Delete these two lines
|
||||
Files: debian/*
|
||||
Copyright: 2021 - 2024 Martin Wimpress <code@wimpress.io>
|
||||
License: GPL-2+
|
||||
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 program. If not, see <https://www.gnu.org/licenses/>
|
||||
.
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
quickgui usr/share/quickgui
|
||||
data/ usr/share/quickgui
|
||||
lib/ usr/share/quickgui
|
||||
icons/ usr/share
|
||||
quickgui.desktop usr/share/applications
|
||||
|
|
@ -0,0 +1 @@
|
|||
/usr/share/quickgui/quickgui /usr/bin/quickgui
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/make -f
|
||||
export DH_VERBOSE = 1
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_usrlocal:
|
||||
|
||||
override_dh_shlibdeps:
|
||||
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
lib/libapp.so
|
||||
lib/libflutter_linux_gtk.so
|
||||
lib/liburl_launcher_linux_plugin.so
|
||||
lib/libwindow_size_plugin.so
|
||||
Loading…
Reference in New Issue