summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ruby-rdiscount/package.py
blob: 2b34ad2d53cd0b19e1093d42ab22224cb00ff645 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2023 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 RubyRdiscount(RubyPackage):
    """Fast Implementation of Gruber's Markdown in C."""

    homepage = "https://dafoster.net/projects/rdiscount/"
    url = "https://github.com/davidfstr/rdiscount/archive/2.2.0.2.tar.gz"

    license("BSD-3-Clause")

    version("2.2.0.2", sha256="a6956059fc61365c242373b03c5012582d7342842eae38fe59ebc1bc169744db")

    depends_on("ruby@1.9.3:", type=("build", "run"))