6b13f9598e
- daemon(8) mistakenly consumes the usual prepended rc.subr fiche_flags - wrap command_args for line length Approved by: zi Sponsored by: SkunkWerks, GmbH Differential Revision: https://reviews.freebsd.org/D23438
29 lines
547 B
Makefile
29 lines
547 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fiche
|
|
PORTVERSION= 0.9.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Command line pastebin for sharing terminal output
|
|
|
|
LICENSE= MIT
|
|
|
|
USERS= ${PORTNAME}
|
|
GROUPS= ${PORTNAME}
|
|
|
|
USES= compiler:c++11-lang
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= solusipse
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/sbin ${STAGEDIR}${WWWDIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|