Add debian files

This commit is contained in:
cutefishd 2021-03-20 17:33:00 +08:00
parent 2f4ad13357
commit 93b99bcf4b
7 changed files with 51 additions and 2 deletions

5
debian/changelog vendored Normal file
View file

@ -0,0 +1,5 @@
cutefish-filemanager (0.1) UNRELEASED; urgency=low
* Initial release (CutefishOS) <cutefishos@foxmail.com>
-- CutefishOS <cutefishos@foxmail.com> Thu, 16 Oct 2014 17:22:15 +0200

1
debian/compat vendored Normal file
View file

@ -0,0 +1 @@
9

24
debian/control vendored Normal file
View file

@ -0,0 +1,24 @@
Source: cutefish-filemanager
Section: devel
Priority: optional
Maintainer: CutefishOS <cutefishos@foxmail.com>
Build-Depends: cmake,
debhelper (>= 9),
extra-cmake-modules,
libkf5kio-dev,
qtbase5-dev,
qtbase5-private-dev,
qtdeclarative5-dev,
qtquickcontrols2-5-dev,
qttools5-dev,
qttools5-dev-tools
Standards-Version: 4.5.0
Homepage: https://github.com/cutefishos/terminal
Package: cutefish-filemanager
Architecture: any
Depends: qml-module-qtquick-controls2,
qml-module-qtquick2,
${misc:Depends},
${shlibs:Depends}
Description: CutefishOS File Manager

3
debian/copyright vendored Normal file
View file

@ -0,0 +1,3 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: calamares
Source: <url://example.com>

9
debian/rules vendored Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/make -f
export QT_SELECT=5
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- -DEMBED_TRANSLATIONS=ON -DBUILD_TESTING=ON

1
debian/source/format vendored Normal file
View file

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

View file

@ -11,6 +11,11 @@ Window {
visible: true
Rectangle {
anchors.fill: parent
color: Meui.Theme.backgroundColor
}
onVisibleChanged: {
if (visible) updateWindowSize()
}
@ -100,13 +105,13 @@ Window {
Label {
text: qsTr("Size:")
Layout.alignment: Qt.AlignRight
visible: size.visible
// visible: size.visible
}
Label {
id: size
text: main.size
visible: text
// visible: text
}
Label {
@ -164,6 +169,7 @@ Window {
text: qsTr("OK")
Layout.fillWidth: true
onClicked: control.close()
flat: true
}
}
}