yaml-cpp: update to 0.8.0; keep yaml-cpp 0.7.0
[oi-userland.git] / components / library / yaml-cpp / Makefile
blob5ff62f49ddf13c60386b4cf6e80c9888ca0cf65a
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
21 # Copyright (c) 2013 David Hoeppner. All rights reserved.
24 BUILD_STYLE= cmake
25 USE_PARALLEL_BUILD = yes
27 include ../../../make-rules/shared-macros.mk
29 COMPONENT_NAME= yaml-cpp
30 COMPONENT_VERSION= 0.8.0
31 COMPONENT_SUMMARY= A YAML parser and emitter in C++ matching the YAML 1.2 spec
32 COMPONENT_PROJECT_URL= https://github.com/jbeder/$(COMPONENT_SRC_NAME)
33 COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
34 COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
35 COMPONENT_ARCHIVE_HASH= sha256:fbe74bbdcee21d656715688706da3c8becfd946d92cd44705cc6098bb23b3a16
36 COMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)/archive/refs/tags/$(COMPONENT_VERSION).tar.gz
37 COMPONENT_FMRI= library/yaml-cpp-8
38 COMPONENT_CLASSIFICATION= System/Libraries
39 COMPONENT_LICENSE= MIT
40 COMPONENT_LICENSE_FILE= LICENSE
42 include $(WS_MAKE_RULES)/common.mk
44 CMAKE_OPTIONS += -DCMAKE_BUILD_TYPE=Release
45 CMAKE_OPTIONS += -DBUILD_SHARED_LIBS=ON
46 CMAKE_OPTIONS += -DYAML_CPP_BUILD_TESTS=ON
47 # Do not install GoogleTest
48 CMAKE_OPTIONS += -DINSTALL_GTEST=OFF
50 # Auto-generated dependencies
51 REQUIRED_PACKAGES += $(GCC_RUNTIME_PKG)
52 REQUIRED_PACKAGES += $(GXX_RUNTIME_PKG)
53 REQUIRED_PACKAGES += system/library