forked from JuMi2006/ebusd
-
Notifications
You must be signed in to change notification settings - Fork 6
1. Build and install
John edited this page Feb 11, 2015
·
8 revisions
ebusd depends on the following libraries being present on your build system:
- tbd
In order to build ebusd, follow these steps:
-
Get the source
For the time being, ebusd is only available on git. If you have git installed, simply type:
git clone https://github.com/john30/ebusd.git cd ebusd
-
Configure your directory structure
The default destination of the compiled ebusd binary is /usr/local/bin/ebusd. If that's fine for you, simply type:
./autogen.sh
If you prefer having the ebusd binary in /usr/bin/ebusd instead, then type:
./autogen.sh --prefix=/usr
-
Compile the source
To compile it, simply type:
make
After that, you should be able to run it directly and get the command line help like this:
./src/ebusd/ebusd --help
-
Install
To install the binaries together with an init script on the local machine, type:
make install