freebsd-ports/devel/gauche-gaunit/Makefile
Kirill Ponomarev 0bce0b3499 Update to 0.0.8
PR:		ports/68886
Submitted by:	maintainer
2004-07-11 11:42:54 +00:00

41 lines
988 B
Makefile

# New ports collection makefile for: GaUnit
# Date created: 8 May 2004
# Whom: Kimura Fuyuki <fuyuki@hadaly.org>
#
# $FreeBSD$
PORTNAME= gaunit
PORTVERSION= 0.0.8
CATEGORIES= devel scheme
MASTER_SITES= http://www.cozmixng.org/~kou/download/
PKGNAMEPREFIX= gauche-
MAINTAINER= fuyuki@hadaly.org
COMMENT= An unit testing framework in Gauche
BUILD_DEPENDS= gosh:${PORTSDIR}/lang/gauche
RUN_DEPENDS= ${BUILD_DEPENDS}
NO_BUILD= yes
DOCSDIR= ${PREFIX}/share/doc/gauche/${PORTNAME}
EXAMPLESDIR= ${PREFIX}/share/examples/gauche/${PORTNAME}
.if !defined(NOPORTDOCS)
PORTDOCS= README.* Tutorial.*
.endif
do-install:
cd ${WRKSRC}; ${LOCALBASE}/bin/gosh install/install.scm
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
cd ${WRKSRC}; ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
${MKDIR} ${EXAMPLESDIR}
${CP} -R ${WRKSRC}/sample/* ${EXAMPLESDIR}
test:
cd ${WRKSRC}; ${LOCALBASE}/bin/gosh -I. test/run-test.scm
.include <bsd.port.mk>