Code afférent au projet Kouglof 2 de l'E2L
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README 2.3 KiB

3 weeks ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. Septime - an enhanced version of Octave, currently under development.
  2. Overview
  3. ========
  4. This project is part of the E2L Prosecco project.
  5. All details on :
  6. https://www.e2li.org/ProjetProsecco.html
  7. Septime is an application to protect against unwanted connections.
  8. The name of the application comes from fencing. In this noble sport,
  9. parries named after the position in which the hand is held, and there
  10. are eight parries : prime, seconde, tierce, quarte, quinte, sixte,
  11. septime and octave.
  12. The octave and septime are especially useful for warding off low blows! :-)
  13. And what could be baser than taking advantage of people's ignorance to spy
  14. on them and steal their data?
  15. But octave is also GNU software (see https://octave.org ).
  16. So we'll be using septime in future versions.
  17. How to compile and install septime
  18. ==================================
  19. Download the septime source code with git :
  20. $ git clone https://githell.e2li.org/Patrick/Kouglof2.git
  21. $ cd Kouglof2/Septime
  22. or donwload a tar.gz file and :
  23. $ tar xvzf septime-x.y.z.tar.gz
  24. $ cd septime-x.y.z
  25. First install some necessary packages :
  26. # in Linux using apt commands :
  27. $ sudo apt install libreadline-dev
  28. $ sudo apt install zlib1g-dev
  29. # in Linux using yum and rmp commands :
  30. $ sudo yum install readline-devel
  31. $ sudo yum install zlib-devel
  32. Second configure and build the program :
  33. $ ./configure
  34. $ make
  35. You can use it by positionning in the source directory and call the
  36. command :
  37. $ cd src
  38. $ ./septime -til -p regles.txt
  39. WARNING !!
  40. make install is possible but not preconized in test version !!
  41. But if you still want to install, don't forget to copy the regles.txt file
  42. to /etc/septime.cfg to avoid passing the file name with the -p option.
  43. Web Page
  44. ========
  45. https://www.e2li.org/ProjetProsecco.html
  46. Bug Reports
  47. ===========
  48. For general bug reports, send a description of the problem to
  49. septime@e2li.org.
  50. Current Status
  51. ==============
  52. septime is in test version.
  53. We are working on porting this application to other consumer systems
  54. such as Android, MasOsX, Windows, ...
  55. Patrick Foubet (septime@e2li.org)