summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSinan81 <sbulut@3vgeomatics.com>2019-08-28 19:30:00 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-08-30 18:27:46 -0700
commit2a27f50d14144ca2ae235067b19fb328670f866d (patch)
tree68d8730752d79d3a59491c4ffaea4c668001cb82 /var
parentce15a28f7d81ab6483c71f962649ba7a782eeb30 (diff)
downloadspack-2a27f50d14144ca2ae235067b19fb328670f866d.tar.gz
spack-2a27f50d14144ca2ae235067b19fb328670f866d.tar.bz2
spack-2a27f50d14144ca2ae235067b19fb328670f866d.tar.xz
spack-2a27f50d14144ca2ae235067b19fb328670f866d.zip
new package: attr
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/attr/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/attr/package.py b/var/spack/repos/builtin/packages/attr/package.py
new file mode 100644
index 0000000000..99f6f776e3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/attr/package.py
@@ -0,0 +1,26 @@
+# 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 Attr(AutotoolsPackage):
+ """Commands for Manipulating Filesystem Extended Attributes"""
+
+ homepage = "https://savannah.nongnu.org/projects/attr"
+ url = "http://download.savannah.gnu.org/releases/attr/attr-2.4.47.src.tar.gz"
+
+ version('2.4.47', sha256='25772f653ac5b2e3ceeb89df50e4688891e21f723c460636548971652af0a859')
+ version('2.4.46', sha256='dcd69bdca7ff166bc45141eddbcf21967999a6b66b0544be12a1cc2fd6340e1f')
+
+ def configure_args(self):
+ args = []
+ args.append('--disable-static')
+ return args
+
+ # Ref. http://www.linuxfromscratch.org/blfs/view/7.5/postlfs/attr.html
+ def install(self, spec, prefix):
+ make()
+ make('install', 'install-dev', 'install-lib')