blob: ab845095f5f2a7f87c78d5346c07d3dca39e3387 (
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
|
# 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 Gmic(MakefilePackage):
"""G'MIC is an open-source framework for digital image processing.
G'MIC is a full-featured open-source framework for digital image
processing, distributed under the CeCILL free software licenses (LGPL-like
and/or GPL-compatible). It provides several user interfaces to convert /
process / visualize generic image datasets, ranging from 1D scalar signals
to 3D+t sequences of multi-spectral volumetric images, hence including 2D
color images."""
homepage = "https://gmic.eu/"
git = "https://github.com/GreycLab/gmic.git"
license("CECILL-2.1")
version("develop", branch="master")
version("3.1.6", tag="v.3.1.6")
depends_on("curl")
depends_on("fftw")
depends_on("libjpeg")
depends_on("libtiff")
depends_on("libxau")
depends_on("libxcb")
depends_on("libpng")
depends_on("openexr")
depends_on("opencv")
depends_on("zlib-api")
depends_on("zstd")
depends_on("libx11")
def build(self, spec, prefix):
make("cli")
def install(self, spec, prefix):
make("install PREFIX='' USR='' DESTDIR={0}".format(self.prefix))
|