2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-12-13 10:35:13 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-12-13 10:35:13 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PerlFileListing(PerlPackage):
|
|
|
|
"""Parse directory listing"""
|
|
|
|
|
|
|
|
homepage = "http://search.cpan.org/~gaas/File-Listing-6.04/lib/File/Listing.pm"
|
|
|
|
url = "http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz"
|
|
|
|
|
|
|
|
version('6.04', '83f636b477741f3a014585bb9cc079a6')
|
|
|
|
|
|
|
|
depends_on('perl-http-date', type=('build', 'run'))
|