posaune
[projects.git] / debian / eibd.prebuild
1 #!/bin/bash
2 set -e
3
4 # Quelle: https://www.meintechblog.de/2014/06/knx-eib-gateway-in-fhem-einbinden/
5
6
7 wget --no-check-certificate http://www.auto.tuwien.ac.at/~mkoegler/pth/pthsem_2.0.8.tar.gz
8 tar xf pthsem_2.0.8.tar.gz
9 pushd pthsem-2.0.8 >/dev/null
10         ./configure
11         make
12 popd >/dev/null
13
14 wget --no-check-certificate http://www.auto.tuwien.ac.at/~mkoegler/eib/bcusdk_0.0.5.tar.gz
15 tar xf bcusdk_0.0.5.tar.gz
16 pushd bcusdk-0.0.5
17         ./configure --with-pth=../pthsem-2.0.8 --without-pth-test --enable-onlyeibd --enable-eibnetip --enable-eibnetiptunnel --enable-eibnetipserver --enable-tpuarts
18 popd >/dev/null
19
20