diff options
-rw-r--r-- | var/spack/repos/builtin/packages/popt/package.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/popt/package.py b/var/spack/repos/builtin/packages/popt/package.py new file mode 100644 index 0000000000..c87e290320 --- /dev/null +++ b/var/spack/repos/builtin/packages/popt/package.py @@ -0,0 +1,15 @@ +# 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 Popt(AutotoolsPackage): + """The popt library parses command line options.""" + + homepage = "https://launchpad.net/popt" + url = "https://launchpad.net/popt/head/1.16/+download/popt-1.16.tar.gz" + + version('1.16', sha256='e728ed296fe9f069a0e005003c3d6b2dde3d9cad453422a10d6558616d304cc8') |