summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/the-platinum-searcher/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/the-platinum-searcher/package.py')
-rw-r--r--var/spack/repos/builtin/packages/the-platinum-searcher/package.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/the-platinum-searcher/package.py b/var/spack/repos/builtin/packages/the-platinum-searcher/package.py
index 2c14dca223..036c813150 100644
--- a/var/spack/repos/builtin/packages/the-platinum-searcher/package.py
+++ b/var/spack/repos/builtin/packages/the-platinum-searcher/package.py
@@ -10,13 +10,13 @@ class ThePlatinumSearcher(Package):
"""Fast parallel recursive grep alternative"""
homepage = "https://github.com/monochromegane/the_platinum_searcher"
- go = "github.com/monochromegane/the_platinum_searcher/..."
+ go = "github.com/monochromegane/the_platinum_searcher/..."
- version('head')
+ version("head")
- extends("go", type='build')
+ extends("go", type="build")
def install(self, spec, prefix):
- env['GOPATH'] = self.stage.source_path + ':' + env['GOPATH']
- go('install', self.package, env=env)
- install_tree('bin', prefix.bin)
+ env["GOPATH"] = self.stage.source_path + ":" + env["GOPATH"]
+ go("install", self.package, env=env)
+ install_tree("bin", prefix.bin)