File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ target_link_libraries(libcec-daemon ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}
22
22
install (TARGETS libcec-daemon DESTINATION bin)
23
23
install (FILES LICENCE README.md DESTINATION share/libcec-daemon)
24
24
install (FILES etc/libcec-daemon.rules DESTINATION /lib/udev/rules.d)
25
- install (FILES etc/libcec-daemon.service DESTINATION /lib/systemd/system /libcec-daemon.service )
25
+ install (FILES etc/libcec-daemon.service DESTINATION /lib/systemd/system )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ git clone https://github.com/KingBonecrusher/libcec-daemon
31
31
* Now we need some buildtools and libraries
32
32
33
33
```
34
- sudo apt-get install build-essential autoconf
34
+ sudo apt-get install build-essential cmake
35
35
sudo apt-get install libboost-program-options-dev libboost-thread-dev libboost-system-dev liblog4cplus-dev
36
36
```
37
37
@@ -49,7 +49,18 @@ sudo bash install-libcec.sh
49
49
50
50
```
51
51
cd libcec-daemon
52
- ./bootstrap && ./configure && make
52
+ cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr .
53
+ make
54
+ ```
55
+
56
+ * Install libcec-daemon
57
+ ```
58
+ sudo make install
59
+ ```
60
+
61
+ * libcec-daemon's systemd script and udev rules need the cec user and group:
62
+ ```
63
+ sudo adduser --quiet --system --group --disabled-password --system --shell /bin/sh cec
53
64
```
54
65
55
66
Usage
You can’t perform that action at this time.
0 commit comments