summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/montage/package.py
blob: 36f7050f7671415ebe64ad7cb64836d6ebc6e9e2 (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 import *


class Montage(MakefilePackage):
    """Montage is a toolkit for assembling Flexible Image Transport System
       (FITS) images into custom mosaics."""

    homepage = "http://montage.ipac.caltech.edu/"
    url      = "http://montage.ipac.caltech.edu/download/Montage_v6.0.tar.gz"

    version('6.0', sha256='1f540a7389d30fcf9f8cd9897617cc68b19350fbcde97c4d1cdc5634de1992c6')

    depends_on('freetype')
    depends_on('bzip2')
    depends_on('libpng')

    def install(self, spec, prefix):
        # not using autotools, just builds bin and lib in the source directory
        mkdirp(prefix.bin, prefix.lib)

        install_tree('bin', prefix.bin)
        install_tree('lib', prefix.lib)