summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-sass/package.py
blob: f27b60bb53eb846d6ea87042df3f1cc1625b5e68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2022 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.package import *


class RSass(RPackage):
    """Syntactically Awesome Style Sheets ('Sass').

    An 'SCSS' compiler, powered by the 'LibSass' library. With this, R
    developers can use variables, inheritance, and functions to generate
    dynamic style sheets. The package uses the 'Sass CSS' extension language,
    which is stable, powerful, and CSS compatible."""

    cran = "sass"

    version('0.4.1', sha256='850fcb6bd49085d5afd25ac18da0744234385baf1f13d8c0a320f4da2de608bb')
    version('0.4.0', sha256='7d06ca15239142a49e88bb3be494515abdd8c75f00f3f1b0ee7bccb55019bc2b')

    depends_on('r-fs', type=('build', 'run'))
    depends_on('r-rlang@0.4.10:', type=('build', 'run'))
    depends_on('r-htmltools@0.5.1:', type=('build', 'run'))
    depends_on('r-r6', type=('build', 'run'))
    depends_on('r-rappdirs', type=('build', 'run'))
    depends_on('gmake', type='build')