1
0
mirror of https://github.com/sys-fs/tubes synced 2024-09-20 19:06:34 -04:00
Pipe fitting
Go to file
2016-11-01 21:25:34 +00:00
LICENSE Initial commit 2016-09-18 15:31:33 +01:00
Makefile Restructure of the code for clarity. 2016-09-23 02:57:44 +01:00
README.md Modify README 2016-11-01 21:25:12 +00:00
tubes.1 Clarify manpage wording 2016-11-01 21:25:34 +00:00
tubes.c Remove -v flag 2016-10-19 00:30:32 +01:00

tubes

tubes is a small program that provides an interface to irc bots that follows the UNIX philosophy. Messages to and from the server are exposed in FIFO buffers in /tmp named for the server and appended with either .in or .out: the server writes to in and the bot writes to out.

Installing

tubes' defaults are configured within tubes.c by changing the values of the server and port variables at compile time. OpenSSL is a dependency of tubes; download the devel package from your distro.

To install, cd into the cloned directory and sudo make install. Some tweaking of the Makefile may be necessary, e.g. the location of local manpages.

Custom compiler flags can be appended to the defaults, e.g. CFLAGS=-fPIC.