summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/stow/package.py
blob: 508b30d715da15b3ef2fe01d2e7933aa5a83a0ef (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-2019 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 Stow(AutotoolsPackage):
    """GNU Stow: a symlink farm manager

       GNU Stow is a symlink farm manager which takes distinct
       packages of software and/or data located in separate
       directories on the filesystem, and makes them appear to be
       installed in the same place."""

    homepage = "https://www.gnu.org/software/stow/"
    url      = "https://ftpmirror.gnu.org/stow/stow-2.2.2.tar.bz2"

    version('2.2.2', sha256='a0022034960e47a8d23dffb822689f061f7a2d9101c9835cf11bf251597aa6fd')
    version('2.2.0', sha256='86bc30fe1d322a5c80ff3bd7580c2758149aad7c3bbfa18b48a9d95c25d66b05')
    version('2.1.3', sha256='2dff605c801fee9fb7d0fef6988bbb8a0511fad469129b20cae60e0544ba1443')
    version('2.1.2', sha256='dda4231dab409d906c5de7f6a706a765e6532768ebbffe34e1823e3371f891f9')
    version('2.1.1', sha256='8bdd21bb2ef6edf5812bf671e64cdd584d92d547d932406cef179646ea6d1998')
    version('2.1.0', sha256='f0e909034fd072b1f5289abb771133d5c4e88d82d4da84195891c53d9b0de5ca')

    depends_on('perl@5.6.1:')