[neon/neon-packaging/mauikit-terminal/Neon/unstable] debian: initial package
Carlos De Maine
null at kde.org
Fri Feb 24 02:24:33 GMT 2023
Git commit eedf85ba49cc9f59341cbce69a938f204dacfc22 by Carlos De Maine.
Committed on 24/02/2023 at 02:24.
Pushed by carlosdem into branch 'Neon/unstable'.
initial package
A +5 -0 debian/changelog
A +1 -0 debian/compat
A +61 -0 debian/control
A +36 -0 debian/copyright
A +3 -0 debian/libmauikitterminal-dev.install
A +2 -0 debian/libmauikitterminal1.install
A +1 -0 debian/qml-module-org-mauikit-terminal.install
A +4 -0 debian/rules
A +1 -0 debian/source/format
https://invent.kde.org/neon/neon-packaging/mauikit-terminal/commit/eedf85ba49cc9f59341cbce69a938f204dacfc22
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8053b77
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+mauikit-terminal (0.0) unstable; urgency=medium
+
+ * Initial release
+
+ -- Jonathan Riddell <jr at jriddell.org> Tue, 04 May 2020 19:57:31 +0000
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..95d6fcd
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,61 @@
+Source: mauikit-terminal
+Section: kde
+Priority: optional
+Maintainer: Jonathan Riddell <jr at jriddell.org>
+Build-Depends: cmake,
+ debhelper (>= 11),
+ extra-cmake-modules,
+ kquickimageeditor-dev,
+ libexiv2-dev,
+ libkf5coreaddons-dev,
+ libkf5i18n-dev,
+ libleptonica-dev,
+ libopencv-dev,
+ libtesseract-dev,
+ libqt5positioning5,
+ libqt5positioningquick5,
+ libqt5qmlmodels5,
+ libqt5sql5,
+ mauiman-dev,
+ mauikit-dev,
+ qtbase5-dev,
+ qtdeclarative5-dev
+Standards-Version: 4.2.1
+Homepage: https://mauikit.org/
+
+Package: qml-module-org-mauikit-terminal
+Architecture: any
+Depends: libmauikit,
+ libmauikitterminal1,
+ qml-module-org-kde-kirigami2,
+ qml-module-org-kde-kquickimageeditor,
+ qml-module-org-kde-mauikit,
+ qml-module-qt-labs-qmlmodels,
+ qml-module-qt-labs-settings,
+ qml-module-qtquick-controls2,
+ qml-module-qtquick-shapes,
+ ${misc:Depends},
+ ${shlibs:Depends}
+Description: MauiKit File Browsing utilities and controls
+ MauiKit File Browsing controls and utils.
+ .
+ This package contains the mauikit filebrowsing qml module.
+
+Package: libmauikitterminal1
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: MauiKit File Browsing utilities and controls
+ MauiKit File Browsing controls and utils.
+ .
+ This package contains the mauikit filebrowsing library.
+
+Package: libmauikitterminal-dev
+Architecture: any
+Depends: libmauikitterminal1 (= ${binary:Version}),
+ qml-module-org-mauikit-filebrowsing,
+ ${misc:Depends},
+ ${shlibs:Depends}
+Description: MauiKit File Browsing utilities and controls
+ MauiKit File Browsing controls and utils.
+ .
+ This package contains mauikit filebrowsing development files.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..000076e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: mauikit
+Source: https://github.com/maui-project/mauikit
+
+Files: *
+Copyright: 2018, Camilo Higuita
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2018, Jonah BrĂ¼chert <jbb at kaidan.im>
+License: GPL-3.0+
+
+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; version 3 dated June, 2007, or (at
+ your option) any later version.
+ On Debian systems, the complete text of version 3 of the GNU General
+ Public License can be found in '/usr/share/common-licenses/GPL-3'.
+
+License: GPL-3.0+
+ 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 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 3 can be found in "/usr/share/common-licenses/GPL-3".
diff --git a/debian/libmauikitterminal-dev.install b/debian/libmauikitterminal-dev.install
new file mode 100644
index 0000000..2b710e5
--- /dev/null
+++ b/debian/libmauikitterminal-dev.install
@@ -0,0 +1,3 @@
+/usr/include/
+/usr/lib/*/cmake/MauiKitTerminal/
+/usr/lib/*/libMauiKitTerminal.so
diff --git a/debian/libmauikitterminal1.install b/debian/libmauikitterminal1.install
new file mode 100644
index 0000000..40cbd1b
--- /dev/null
+++ b/debian/libmauikitterminal1.install
@@ -0,0 +1,2 @@
+/usr/lib/*/libMauiKitTerminal.so.1
+/usr/lib/*/libMauiKitTerminal.so.1*
diff --git a/debian/qml-module-org-mauikit-terminal.install b/debian/qml-module-org-mauikit-terminal.install
new file mode 100644
index 0000000..865e7ea
--- /dev/null
+++ b/debian/qml-module-org-mauikit-terminal.install
@@ -0,0 +1 @@
+/usr/lib/*/qt5
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ 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)
More information about the Neon-commits
mailing list