mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
88bfe4bd43
When appropriate: - Try to use DISTVERSION{SUF,PRE}FIX - Replace PORTNAME-PORTVERSION by DISTNAME - Convert MASTER_SITES to use macros - Other light cleanup With hat: portmgr Sponsored by: Absolight
28 lines
562 B
Makefile
28 lines
562 B
Makefile
# Created by: Dereckson <dereckson@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= woof
|
|
DISTVERSION= 2012-05-31
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.home.unix-ag.org/simon/
|
|
EXTRACT_SUFX= .py
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= dereckson@gmail.com
|
|
COMMENT= Web Offer One File, an ad-hoc single file webserver
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= python
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/woof
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}/${DISTFILES}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${DISTFILES} ${STAGEDIR}${PREFIX}/bin/woof
|
|
|
|
.include <bsd.port.mk>
|