summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/feh/package.py
blob: 39812929e265b33a0c9ac075fa6335eecbed0e0a (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
# 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 Feh(MakefilePackage):
    """
    feh is an X11 image viewer aimed mostly at console users. Unlike most
    other viewers, it does not have a fancy GUI, but simply displays images. It
    is controlled via commandline arguments and configurable key/mouse
    actions.
    """

    homepage = "https://feh.finalrewind.org/"
    url = "https://feh.finalrewind.org/feh-3.3.tar.bz2"

    maintainers("TheQueasle")

    license("MIT-feh")

    version("3.10", sha256="1d71d1f6dcfe9ffee5e2766969a11978f7eb4fac7d7ae556f104c11f9c57cc98")
    version("3.9.1", sha256="455c92711b588af149b945edc5c145f3e9aa137ed9689dabed49d5e4acac75fa")
    version("3.3", sha256="f3959958258111d5f7c9fbe2e165c52b9d5987f07fd1f37540a4abf9f9638811")
    version("3.1.1", sha256="61d0242e3644cf7c5db74e644f0e8a8d9be49b7bd01034265cc1ebb2b3f9c8eb")

    depends_on("imlib2")
    depends_on("curl")
    depends_on("libxinerama")
    depends_on("libexif")
    depends_on("libxt")

    def build(self, spec, prefix):
        make("PREFIX={0}".format(prefix), "exif=1", "help=1")

    def install(self, spec, prefix):
        make("install", "PREFIX={0}".format(prefix))