cfa1ed7efa
-- Xml Light is a minimal Xml parser & printer for OCaml. It provides a few functions to parse a basic Xml document into an OCaml data structure and to print back the data structures to an Xml document. Xml Light has also support for DTD (Document Type Definition).
29 lines
702 B
Makefile
29 lines
702 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/05/23 23:03:56 avsm Exp $
|
|
|
|
COMMENT= "simple Objective Caml bindings for XML"
|
|
CATEGORIES= textproc
|
|
|
|
V= 2.2
|
|
DISTNAME= xml-light-${V}
|
|
PKGNAME= ocaml-${DISTNAME}
|
|
EXTRACT_SUFX= .zip
|
|
MASTER_SITES= http://tech.motion-twin.com/zip/
|
|
|
|
MAINTAINER= Anil Madhavapeddy <avsm@openbsd.org>
|
|
HOMEPAGE= http://tech.motion-twin.com/xmllight.html
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
MODULES= lang/ocaml
|
|
WRKDIST= ${WRKDIR}/xml-light
|
|
NO_REGRESS= Yes
|
|
ALL_TARGET= all ${MODOCAML_NATIVE:S,Yes,opt,:S,No,,}
|
|
INSTALL_TARGET= install ${MODOCAML_NATIVE:S,Yes,installopt,:S,No,,}
|
|
USE_GMAKE= Yes
|
|
|
|
.include <bsd.port.mk>
|