Files
addons/tellstick/Dockerfile
Franck Nijhof 6a3c596a78 tellstick: Collection of small improvements (#916)
* tellstick: Move data run to data folder

* tellstick: Prettier JSON & YAML files

* tellstick: Documentation tweaks
2019-12-19 13:15:06 +01:00

45 lines
1.2 KiB
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
ENV LANG C.UTF-8
# Install Telldus library for TellStick (using same approach as in hassio docker installation)
RUN apk add --no-cache \
confuse \
libftdi1 \
libstdc++ \
socat \
&& apk add --no-cache --virtual .build-dependencies \
argp-standalone \
build-base \
cmake \
confuse-dev \
doxygen \
gcc \
git \
libftdi1-dev \
&& ln -s /usr/include/libftdi1/ftdi.h /usr/include/ftdi.h \
&& mkdir -p /usr/src \
&& cd /usr/src \
&& git clone -b master --depth 1 https://github.com/telldus/telldus \
&& cd telldus/telldus-core \
&& sed -i \
"/\<sys\/socket.h\>/a \#include \<sys\/select.h\>" \
common/Socket_unix.cpp \
&& cmake . \
-DBUILD_LIBTELLDUS-CORE=ON \
-DBUILD_TDADMIN=OFF \
-DBUILD_TDTOOL=ON \
-DGENERATE_MAN=OFF \
-DFORCE_COMPILE_FROM_TRUNK=ON \
-DFTDI_LIBRARY=/usr/lib/libftdi1.so \
&& make \
&& make install \
&& apk del .build-dependencies \
&& rm -rf /usr/src/telldus
# Copy data for add-on
COPY data/run.sh /
CMD [ "/run.sh" ]