16 lines
451 B
Markdown
16 lines
451 B
Markdown
|
KNXD
|
||
|
----
|
||
|
|
||
|
The following commands build knxd. Run these on the raspberry pi!
|
||
|
After these commands *.deb files are in the created build_dir and should be copied back to this folder.
|
||
|
|
||
|
```bash
|
||
|
mkdir build_dir
|
||
|
cd build_dir
|
||
|
git clone https://github.com/knxd/knxd.git
|
||
|
cd knxd
|
||
|
git checkout stable
|
||
|
apt-get install debhelper cdbs automake libtool libusb-1.0-0-dev git-core build-essential libsystemd-dev dh-systemd libev-dev cmake
|
||
|
dpkg-buildpackage -b -uc
|
||
|
```
|