
* Separate Apple Clang from LLVM Clang Apple Clang is a compiler of its own. All places referring to "-apple" suffix have been updated. * Hack to use a dash in 'apple-clang' To be able to use autodoc from Sphinx we need a valid Python name for the module that contains Apple's Clang code. * Updated packages to account for the existence of apple-clang Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Added unit test for XCode related functions Co-authored-by: Gregory Becker <becker33@llnl.gov> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
29 lines
991 B
Python
29 lines
991 B
Python
# Copyright 2013-2020 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 Sqlitebrowser(CMakePackage):
|
|
"""DB Browser for SQLite (DB4S) is a high quality, visual,
|
|
open source tool to create, design, and edit database files
|
|
compatible with SQLite."""
|
|
|
|
homepage = "https://sqlitebrowser.org"
|
|
url = "https://github.com/sqlitebrowser/sqlitebrowser/archive/v3.10.1.tar.gz"
|
|
|
|
version('3.10.1', sha256='36eb53bc75192c687dce298c79f1532c410ce4ecbeeacfb07b9d02a307f16bef')
|
|
|
|
msg = 'sqlitebrowser requires C++11 support'
|
|
conflicts('%gcc@:4.8.0', msg=msg)
|
|
conflicts('%apple-clang@:3.9', msg=msg)
|
|
conflicts('%clang@:3.2', msg=msg)
|
|
conflicts('%intel@:12', msg=msg)
|
|
conflicts('%xl@:13.0', msg=msg)
|
|
conflicts('%xl_r@:13.0', msg=msg)
|
|
|
|
depends_on('sqlite@3:+functions')
|
|
depends_on('qt@5.5:')
|