sbp: add new package (#25194)

This commit is contained in:
John Vandenberg 2021-08-03 19:25:21 +08:00 committed by GitHub
parent a4698f6122
commit d33d9d1f03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,27 @@
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class Sbp(CMakePackage):
"""Library providing an API for Piksi GNSS devices."""
homepage = 'https://github.com/swift-nav/libsbp'
git = 'https://github.com/swift-nav/libsbp'
maintainers = ['jayvdb']
version('3.4.10', tag='v3.4.10', submodules=True)
root_cmakelists_dir = 'c'
def cmake_args(self):
args = [
self.define('BUILD_SHARED_LIBS', 'ON'),
self.define('libsbp_ENABLE_TESTS', 'OFF'),
self.define('libsbp_ENABLE_DOCS', 'OFF'),
]
return args