
* add sqlitebrowser Change-Id: I20cac709509e82d348cebc11b0d584b53b2ad3d4 * add message and clean up unnecessary code Change-Id: Ib9d2229ee25d751274680d06824891ee78fa5970 * and make flake8 happy Change-Id: I814eb89eefe1767af4d8043b08b61991750516df * make gcc-independence great again Change-Id: I75f7271757782a6735eb7f03c0551d190722974d * remove explicit import of dso_suffix Change-Id: I626c6391b22524895199db5508606c4cf22bf9b5
47 lines
1.9 KiB
Python
47 lines
1.9 KiB
Python
##############################################################################
|
|
# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
|
#
|
|
# This file is part of Spack.
|
|
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
|
|
# LLNL-CODE-647188
|
|
#
|
|
# For details, see https://github.com/spack/spack
|
|
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License (as
|
|
# published by the Free Software Foundation) version 2.1, February 1999.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
|
|
# conditions of the GNU Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
##############################################################################
|
|
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', '66cbe41f9da5be80067942ed3816576c')
|
|
|
|
msg = 'sqlitebrowser requires C++11 support'
|
|
conflicts('%gcc@:4.8.0', 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:')
|