summaryrefslogtreecommitdiff
path: root/qtc_packaging
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2012-09-30 16:48:52 +0200
committerJavier S. Pedro <maemo@javispedro.com>2012-09-30 16:48:52 +0200
commit630923d0de4a5cab558531e943370f00a64b316d (patch)
tree144e29d4785de0bfd46c65cd7977bd59e8d5ab09 /qtc_packaging
parent0a174260c5dd04d516da7a6021e681d49c312547 (diff)
downloaddistfold-630923d0de4a5cab558531e943370f00a64b316d.tar.gz
distfold-630923d0de4a5cab558531e943370f00a64b316d.zip
autogenerate keys and autostartup daemon
Diffstat (limited to 'qtc_packaging')
-rw-r--r--qtc_packaging/debian_harmattan/changelog6
-rw-r--r--qtc_packaging/debian_harmattan/control6
-rw-r--r--qtc_packaging/debian_harmattan/postinst13
-rw-r--r--qtc_packaging/debian_harmattan/prerm13
4 files changed, 36 insertions, 2 deletions
diff --git a/qtc_packaging/debian_harmattan/changelog b/qtc_packaging/debian_harmattan/changelog
index bcd14dd..21b8a99 100644
--- a/qtc_packaging/debian_harmattan/changelog
+++ b/qtc_packaging/debian_harmattan/changelog
@@ -1,3 +1,9 @@
+distfold (0.2.0) unstable; urgency=low
+
+ * Auto-generate keys.
+
+ -- Javier <maemo@javispedro.com> Sun, 30 Sep 2012 16:40:37 +0200
+
distfold (0.0.1) unstable; urgency=low
* Initial Release.
diff --git a/qtc_packaging/debian_harmattan/control b/qtc_packaging/debian_harmattan/control
index 9ae0221..26d9cde 100644
--- a/qtc_packaging/debian_harmattan/control
+++ b/qtc_packaging/debian_harmattan/control
@@ -2,7 +2,8 @@ Source: distfold
Section: user/other
Priority: optional
Maintainer: Javier <maemo@javispedro.com>
-Build-Depends: debhelper (>= 5), libqt4-dev
+Build-Depends: debhelper (>= 5), zlib1g-dev, libqt4-dev, libqtm-systeminfo-dev,
+ libqca2-dev
Standards-Version: 3.7.3
Homepage: <insert the upstream URL, if relevant>
@@ -14,5 +15,6 @@ Description: Distributed folder synchronizer
auto-discover devices on the same network sharing the same folder and
try to mirror each of them against each other.
.
- distfold depends on all the devices having a synchronized clock.
+ distfold depends on all the devices having a synchronized clock. Please
+ backup your data before installing this program.
XSBC-Maemo-Display-Name: distfold
diff --git a/qtc_packaging/debian_harmattan/postinst b/qtc_packaging/debian_harmattan/postinst
new file mode 100644
index 0000000..21f7cbe
--- /dev/null
+++ b/qtc_packaging/debian_harmattan/postinst
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+ configure)
+ start -v apps/distfoldd || :
+ ;;
+esac
+
+exit 0
diff --git a/qtc_packaging/debian_harmattan/prerm b/qtc_packaging/debian_harmattan/prerm
new file mode 100644
index 0000000..a1d4b56
--- /dev/null
+++ b/qtc_packaging/debian_harmattan/prerm
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ upgrade|remove)
+ stop -v apps/distfoldd || :
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0