lsyncd/manual/building/index.md

19 lines
484 B
Markdown
Raw Normal View History

2016-06-05 17:30:10 +00:00
---
layout: default
title: Compiling
---
2016-12-01 12:46:45 +00:00
# Requirements
Lsyncd depends on Lua 5.1 or greater. that is Lua 5.1, 5.2 or 5.3. For later Lua versions you need an update Lsnycd version. For most distributions you need the liblua??, the liblua??-dev and the lua?? package, with ?? being the Lua version.
# Compiling
2016-06-05 17:30:10 +00:00
Building Lsyncd should be a straight forward process. Unpack the downloaded tar.gz file and run:
2016-06-08 07:01:58 +00:00
{% highlight shell %}
2016-06-05 17:30:10 +00:00
cmake .
make
sudo make install
2016-06-08 07:01:58 +00:00
{% endhighlight %}