diff options
author | Michele Calgaro <[email protected]> | 2020-09-11 14:38:47 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-09-11 14:38:47 +0900 |
commit | 884c8093d63402a1ad0b502244b791e3c6782be3 (patch) | |
tree | a600d4ab0d431a2bdfe4c15b70df43c14fbd8dd0 /debian/opensync/opensync-0.22/README | |
parent | 14e1aa2006796f147f3f4811fb908a6b01e79253 (diff) | |
download | extra-dependencies-884c8093d63402a1ad0b502244b791e3c6782be3.tar.gz extra-dependencies-884c8093d63402a1ad0b502244b791e3c6782be3.zip |
Added debian extra dependency packages.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'debian/opensync/opensync-0.22/README')
-rw-r--r-- | debian/opensync/opensync-0.22/README | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/debian/opensync/opensync-0.22/README b/debian/opensync/opensync-0.22/README new file mode 100644 index 00000000..b4b63d3d --- /dev/null +++ b/debian/opensync/opensync-0.22/README @@ -0,0 +1,46 @@ +Hi everyone! + +Here is what you have to do (atm) to test 0.90: + +./configure +notice that dbus-dev is missing +install dbus-dev +make + +At the moment 0.90 requires some hand tweaking to start +mainly since the install routines are not finished. + +start multisyncd from src: +cd src +./multisyncd + +multisyncd knows the following command line switches atm: + +--config /path/to/config (self explanatory) +--plugin plugin_name (explained below) +some more you dont need to know atm and might disappaer + +so... to start the multisyncd in server mode do the following +( in the src directory ) +./multisyncd --config ../data/config/multisyncd.conf + +If it doesnt start do: export MSYNC_DEBUG=1 to see the debugging +messages + +to start a plugin (this is for example how plugins that always listen +in the background for a palm for example are started) do: +./multisyncd --config ../data/config/multisyncd.conf --plugin libpalm_sync +the plugin_name has to be either +- a name of a library where the path is in the ldconfig without a ending (.so) +- a name of a lib with a ending +- the complete path + +to start the cli go to interfaces/cli +do: export PYTHONPATH=../../python/.libs +and do ./test.py for a shell script +and ./command.py for a interactive curses based version +in the curses version press c to get it to read the +syncgroups and syncmembers installed on the server +(in the data/datadir directory if you used the above config) + +I have a .cdtproject and a .project file for the fans of eclipse ready to use :)
\ No newline at end of file |