Skip to content

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:

  1. 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
  2. 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
  3. 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
  4. Install

    To install the binaries together with an init script on the local machine, type:

    make install
Clone this wiki locally