mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
31 lines
689 B
Makefile
31 lines
689 B
Makefile
# Created by: Shinsuke Matsui <smatsui@karashi.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tinytinyhttpd
|
|
PORTVERSION= 0.0.11
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://cloud.github.com/downloads/mattn/tinytinyhttpd/ \
|
|
${MASTER_SITE_LOCAL}
|
|
|
|
MAINTAINER= smatsui@karashi.org
|
|
COMMENT= Tiny tiny httpd
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/tthttpd
|
|
SUB_FILES= example.conf
|
|
PORTDOCS= README example.conf ChangeLog
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tthttpd ${PREFIX}/bin
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/example.conf ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|