6f0cab7362
vee is a zero configuration, command line blog tool that is written in Bourne shell in a single file. It uses vi as the editor, but this can be changed out. WWW: http://www.0x743.com/vee/ Author: Brett D. Estrade <estrabd+vee at gmail>
26 lines
529 B
Makefile
26 lines
529 B
Makefile
# New ports collection makefile for: vee
|
|
# Date created: 24 April 2007
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vee
|
|
PORTVERSION= 0.9.9.a
|
|
CATEGORIES= www
|
|
MASTER_SITES= CENKES
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Tiny CLI blogging tool
|
|
|
|
USE_BZIP2= yes
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -Ee 's|^function ([[:graph:]]+)|\1 ()|' ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|