Add debian files
This commit is contained in:
parent
2f4ad13357
commit
93b99bcf4b
7 changed files with 51 additions and 2 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal 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
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
9
|
24
debian/control
vendored
Normal file
24
debian/control
vendored
Normal 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
3
debian/copyright
vendored
Normal 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
9
debian/rules
vendored
Executable 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
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
|
@ -11,6 +11,11 @@ Window {
|
||||||
|
|
||||||
visible: true
|
visible: true
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
color: Meui.Theme.backgroundColor
|
||||||
|
}
|
||||||
|
|
||||||
onVisibleChanged: {
|
onVisibleChanged: {
|
||||||
if (visible) updateWindowSize()
|
if (visible) updateWindowSize()
|
||||||
}
|
}
|
||||||
|
@ -100,13 +105,13 @@ Window {
|
||||||
Label {
|
Label {
|
||||||
text: qsTr("Size:")
|
text: qsTr("Size:")
|
||||||
Layout.alignment: Qt.AlignRight
|
Layout.alignment: Qt.AlignRight
|
||||||
visible: size.visible
|
// visible: size.visible
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
id: size
|
id: size
|
||||||
text: main.size
|
text: main.size
|
||||||
visible: text
|
// visible: text
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
@ -164,6 +169,7 @@ Window {
|
||||||
text: qsTr("OK")
|
text: qsTr("OK")
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
onClicked: control.close()
|
onClicked: control.close()
|
||||||
|
flat: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue