mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
02aedc8506
sic is an extremely simple IRC client. It consists of lesser than 250 lines of code. It is the little brother of irc/ii WWW: http://www.suckless.org/programs/sic.html PR: ports/129917 Submitted by: Dennis Herrmann <adox at mcx2.org>
30 lines
655 B
Makefile
30 lines
655 B
Makefile
# New ports collection makefile for: simpleirc
|
|
# Date created: 24. Dez 2008
|
|
# Whom: Dennis Herrmann <adox@mcx2.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= simpleirc
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= irc
|
|
MASTER_SITES= http://code.suckless.org/dl/tools/
|
|
DISTNAME= sic-${PORTVERSION}
|
|
|
|
MAINTAINER= adox@mcx2.org
|
|
COMMENT= An extremly simple IRC client
|
|
|
|
MAN1= simpleirc.1
|
|
PLIST_FILES= bin/simpleirc
|
|
PORTDOCS= README LICENSE
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_MSG} "installing additional documentation to ${DOCSDIR}"
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
|
|
@${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|