6dfa61d68f
LibYAML is a YAML 1.1 parser and emitter written in C. LibYAML covers presenting and parsing processes. Thus LibYAML defines the following two processors: * Parser, which takes an input stream of bytes and produces a sequence of parsing events. * Emitter, which takes a sequence of events and produces a stream of bytes <...> from Pierre-Emmanuel Andre (MAINTAINER)
30 lines
599 B
Makefile
30 lines
599 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/10/18 10:50:46 ajacoutot Exp $
|
|
|
|
COMMENT= YAML 1.1 parser and emitter written in C
|
|
|
|
DISTNAME= yaml-0.1.1
|
|
PKGNAME= lib${DISTNAME}
|
|
CATEGORIES= devel
|
|
|
|
SHARED_LIBS= yaml-0 0.0 # 1.0
|
|
SHARED_LIBS+= yaml 0.0 # 1.0
|
|
|
|
HOMEPAGE= http://pyyaml.org/wiki/LibYAML
|
|
|
|
MAINTAINER= Pierre-Emmanuel Andre <pea@raveland.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://pyyaml.org/download/libyaml/
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
.include <bsd.port.mk>
|