blob: b54b7864b083f3fd685f36ac1e94d4d63f9bcce3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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 PerlDbdPg(PerlPackage):
"""DBD::Pg is a Perl module that works with the DBI module to provide
access to PostgreSQL databases."""
homepage = "https://metacpan.org/pod/DBD::Pg"
url = "https://cpan.metacpan.org/authors/id/T/TU/TURNSTEP/DBD-Pg-3.10.0.tar.gz"
version('3.10.0', sha256='e103268a63e2828e3d43659bdba5f743446cbbe047a766f843112eedae105f80')
depends_on('postgresql')
depends_on('perl-dbi', type=('build', 'run'))
|