summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-png/package.py
blob: f7621512dee59196a0a542a8d6392e6e89898832 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 RPng(RPackage):
    """This package provides an easy and simple way to read, write and display
    bitmap images stored in the PNG format. It can read and write both files
    and in-memory raw vectors."""

    homepage = "https://www.rforge.net/png/"
    url      = "https://cloud.r-project.org/src/contrib/png_0.1-7.tar.gz"
    list_url = "https://cloud.r-project.org/src/contrib/Archive/png"

    version('0.1-7', sha256='e269ff968f04384fc9421d17cfc7c10cf7756b11c2d6d126e9776f5aca65553c')

    depends_on('r@2.9.0:', type=('build', 'run'))
    depends_on('libpng')