Houchaoqun / cronopete

An Apple's TimeMachine clone for Linux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CRONOPETE

A backup utility for Linux.

Cronopete is a backup utility for Linux, modeled after Apple's Time Machine. It aims to simplify the creation of periodic backups.

BUILDING CRONOPETE

To build Cronopete, you need to install CMAKE and Vala-0.20

Now, type

mkdir BUILD
cd BUILD
cmake ..
make
sudo make install

This will compile Cronopete with AppIndicator support.

There is one modifier for "cmake" that allows to change the compilation options:

NO_APPINDICATOR will compile cronopete without the libappindicator library

This modifier must be prepended with "-D", and appended with "=on". To use this modifier, first remove all the contents in the BUILD folder, and run again cmake. This will compile cronopete without libappindicator library:

cd BUILD
rm -rf *
cmake .. -DNO_APPINDICATOR=on
make
sudo make install

CONTACTING THE AUTHOR

Sergio Costas Rodriguez (Raster Software Vigo)
raster@rastersoft.com
http://www.rastersoft.com
GIT: git://github.com/rastersoft/cronopete.git

About

An Apple's TimeMachine clone for Linux

License:GNU General Public License v3.0


Languages

Language:Vala 69.5%Language:CMake 19.0%Language:Meson 6.2%Language:Makefile 3.8%Language:Python 1.0%Language:Shell 0.5%