32 lines
704 B
Makefile
32 lines
704 B
Makefile
# $OpenBSD: Makefile,v 1.10 2015/08/30 16:24:35 avsm Exp $
|
|
|
|
COMMENT = unit test framework for OCaml
|
|
CATEGORIES = devel
|
|
|
|
DISTNAME = ounit-2.0.0
|
|
REVISION = 1
|
|
|
|
# The last url component (the number) changes every release, too.
|
|
MASTER_SITES = http://forge.ocamlcore.org/frs/download.php/1258/
|
|
|
|
HOMEPAGE = http://ounit.forge.ocamlcore.org/
|
|
MAINTAINER = Christopher Zimmermann <chrisz@openbsd.org>
|
|
|
|
# LGPL >=2.1
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ocaml
|
|
|
|
BUILD_DEPENDS += sysutils/findlib lang/ocaml-camlp4
|
|
|
|
CONFIGURE_STYLE = oasis
|
|
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ounit
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/examples/* \
|
|
${PREFIX}/share/examples/ounit/
|
|
|
|
.include <bsd.port.mk>
|