summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-01 23:09:59 +0800
committerGitHub <noreply@github.com>2020-09-01 10:09:59 -0500
commitf9a330ae9904db97a27e38890444def52f1d31b3 (patch)
tree4856601bddaf18c83f98b32ef3e688c9271d6c60 /var
parent12078382b6d28960bdab31ee6c4a7cbf6d4502c0 (diff)
downloadspack-f9a330ae9904db97a27e38890444def52f1d31b3.tar.gz
spack-f9a330ae9904db97a27e38890444def52f1d31b3.tar.bz2
spack-f9a330ae9904db97a27e38890444def52f1d31b3.tar.xz
spack-f9a330ae9904db97a27e38890444def52f1d31b3.zip
Add new package: efivar (#18392)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/efivar/package.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/efivar/package.py b/var/spack/repos/builtin/packages/efivar/package.py
new file mode 100644
index 0000000000..5d5c6bdbe5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/efivar/package.py
@@ -0,0 +1,28 @@
+# Copyright 2013-2020 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 *
+import glob
+
+
+class Efivar(MakefilePackage):
+ """Tools and libraries to work with EFI variables"""
+
+ homepage = "https://github.com/rhboot/efivar"
+ url = "https://github.com/rhboot/efivar/archive/37.tar.gz"
+
+ version('37', sha256='74c52b4f479120fb6639e753e71163ba3f557a7a67c0be225593f9f05b253f36')
+ version('36', sha256='24ed0cafbaf6d913e8f60e5da3cbbac1a1578e16cf5c95b21f2eb6753c13173f')
+ version('35', sha256='747bc4d97b4bd74979e5356c44a172534a8a07184f130349fd201742e683d292')
+
+ build_directory = 'src'
+
+ def install(self, spec, prefix):
+ with working_dir(self.build_directory):
+ mkdirp(prefix.lib)
+ files = glob.glob('*.so*')
+ for f in files:
+ install(f, prefix.lib)
+ install_tree('include/efivar', prefix.include)