summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/freeimage/package.py
blob: a0e6ae2e2608f3231d7eac51bdf49a7ff4553251 (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
# Copyright 2013-2024 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 Freeimage(MakefilePackage):
    """FreeImage is an Open Source library project for developers who would like
    to support popular graphics image formats like PNG, BMP, JPEG, TIFF and
    others as needed by today's multimedia applications"""

    homepage = "http://freeimage.sourceforge.net/"

    version("3.18.0", sha256="f41379682f9ada94ea7b34fe86bf9ee00935a3147be41b6569c9605a53e438fd")

    patch("install_fixes.patch", when="@3.18.0")

    def edit(self, spec, prefix):
        env["DESTDIR"] = prefix
        env["CXXFLAGS"] = "-std=c++14"

    def url_for_version(self, version):
        url = "https://downloads.sourceforge.net/project/freeimage/Source%20Distribution/{0}/FreeImage{1}.zip"
        return url.format(version, version.joined)