Miscellaneous tiny changes
This commit is contained in:
parent
e141b364fe
commit
92f2339ef5
|
@ -1,8 +1,9 @@
|
||||||
# Build files
|
# Build files
|
||||||
/zyklonb
|
/build
|
||||||
/kike
|
|
||||||
/kike.msg
|
|
||||||
/kike-replies.c
|
|
||||||
|
|
||||||
# Qt Creator files
|
# Qt Creator files
|
||||||
/ZyklonB.*
|
/CMakeLists.txt.user*
|
||||||
|
/ZyklonB.config
|
||||||
|
/ZyklonB.files
|
||||||
|
/ZyklonB.creator*
|
||||||
|
/ZyklonB.includes
|
||||||
|
|
15
README
15
README
|
@ -28,20 +28,21 @@ Some interesting features:
|
||||||
|
|
||||||
Building
|
Building
|
||||||
--------
|
--------
|
||||||
Build dependencies: CMake, pkg-config, help2man, awk, sh, openssl
|
Build dependencies: CMake, pkg-config, help2man, awk, sh
|
||||||
|
Runtime dependencies: openssl
|
||||||
|
|
||||||
$ git clone https://github.com/pjanouch/ZyklonB.git
|
$ git clone https://github.com/pjanouch/ZyklonB.git
|
||||||
$ mkdir build
|
$ mkdir build
|
||||||
$ cd build
|
$ cd build
|
||||||
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
|
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug
|
||||||
$ make
|
$ make
|
||||||
|
|
||||||
To install the application, you can do either the usual:
|
To install the application, you can do either the usual:
|
||||||
$ make install
|
# make install
|
||||||
|
|
||||||
Or you can try telling CMake to make a package for you. For Debian it is:
|
Or you can try telling CMake to make a package for you. For Debian it is:
|
||||||
$ cpack -G DEB
|
$ cpack -G DEB
|
||||||
# dpkg -i sdtui-*.deb
|
# dpkg -i ZyklonB-*.deb
|
||||||
|
|
||||||
Note that for versions of CMake before 2.8.9, you need to prefix cpack with
|
Note that for versions of CMake before 2.8.9, you need to prefix cpack with
|
||||||
`fakeroot' or file ownership will end up wrong.
|
`fakeroot' or file ownership will end up wrong.
|
||||||
|
@ -57,9 +58,9 @@ doing that), simply run the appropriate program with no arguments:
|
||||||
$ zyklonb
|
$ zyklonb
|
||||||
$ kike
|
$ kike
|
||||||
|
|
||||||
ZyklonB stays running in the foreground, so I recommend launching it inside
|
ZyklonB stays running in the foreground, therefore I recommend launching it
|
||||||
a Screen or tmux session. kike, on the other hand, immediately forks into the
|
inside a Screen or tmux session. kike, on the other hand, immediately forks
|
||||||
background. Use something like `killall' if you want to terminate it.
|
into the background. Use something like `killall' if you want to terminate it.
|
||||||
|
|
||||||
Client Certificates
|
Client Certificates
|
||||||
-------------------
|
-------------------
|
||||||
|
|
Loading…
Reference in New Issue