forked from Lainports/freebsd-ports
irc directory tree with server, channel and nick name directories. In every directory a FIFO in file and a normal out file is created. The in file is used to communicate with the servers and the out files contain the server messages. For every channel and every nick name there are related in and out files created. This allows IRC communication from command line and adheres to the Unix philosophy. WWW: http://www.suckless.org/wiki/tools/irc/irc_it/ PR: ports/125567 Submitted by: Julien Laffaye <kimelto at gmail.com>
15 lines
508 B
Text
15 lines
508 B
Text
--- Makefile.orig 2007-07-14 20:39:41.000000000 +0200
|
|
+++ Makefile 2008-07-17 21:27:32.000000000 +0200
|
|
@@ -35,12 +35,10 @@
|
|
@${CC} -o $@ ${OBJ} ${LDFLAGS}
|
|
|
|
install: all
|
|
- @mkdir -p ${DESTDIR}${DOCDIR}
|
|
@mkdir -p ${DESTDIR}${BINDIR}
|
|
@mkdir -p ${DESTDIR}${MAN1DIR}
|
|
|
|
@install -d ${DESTDIR}${BINDIR} ${DESTDIR}${MAN1DIR}
|
|
- @install -m 644 CHANGES README query.sh FAQ LICENSE ${DESTDIR}${DOCDIR}
|
|
@install -m 775 ii ${DESTDIR}${BINDIR}
|
|
@install -m 444 ii.1 ${DESTDIR}${MAN1DIR}
|
|
@echo "installed ii"
|