summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/openexr/package.py
blob: ad463bc79219886657d5e3bacc29820435644435 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
##############################################################################
# Copyright (c) 2013-2017, 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 Openexr(Package):
    """OpenEXR Graphics Tools (high dynamic-range image file format)"""

    homepage = "http://www.openexr.com/"
    url = "https://savannah.nongnu.org/download/openexr/openexr-2.2.0.tar.gz"

    version('2.2.0', 'b64e931c82aa3790329c21418373db4e')
    version('2.1.0', '33735d37d2ee01c6d8fbd0df94fb8b43')
    version('2.0.1', '4387e6050d2faa65dd5215618ff2ddce')
    version('1.7.0', '27113284f7d26a58f853c346e0851d7a')
    version('1.6.1', '11951f164f9c872b183df75e66de145a')
    version('1.5.0', '55342d2256ab3ae99da16f16b2e12ce9')
    version('1.4.0a', 'd0a4b9a930c766fa51561b05fb204afe')
    version('1.3.2', '1522fe69135016c52eb88fc7d8514409')

    variant('debug', default=False,
            description='Builds a debug version of the libraries')

    depends_on('pkg-config', type='build')
    depends_on('ilmbase')

    def install(self, spec, prefix):
        configure_options = ['--prefix={0}'.format(prefix)]
        if '+debug' not in spec:
            configure_options.append('--disable-debug')
        configure(*configure_options)
        make('install')