summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-03-29 15:29:14 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-03-29 15:29:14 -0700
commit7f469eadff9dfd7b1ac3cb4ff8c0476ac9027031 (patch)
tree9608533a81d32664aaeed2aaac43c56e3aca2ce3
parent3c8881487f85776702cc7acc09dc944b5f579c1d (diff)
parentad402ff85bc4150aa49fb394929b062b40b27604 (diff)
downloadspack-7f469eadff9dfd7b1ac3cb4ff8c0476ac9027031.tar.gz
spack-7f469eadff9dfd7b1ac3cb4ff8c0476ac9027031.tar.bz2
spack-7f469eadff9dfd7b1ac3cb4ff8c0476ac9027031.tar.xz
spack-7f469eadff9dfd7b1ac3cb4ff8c0476ac9027031.zip
Merge pull request #684 from davydden/astyle
astyle@2.04: add new package
-rw-r--r--var/spack/repos/builtin/packages/astyle/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/astyle/package.py b/var/spack/repos/builtin/packages/astyle/package.py
new file mode 100644
index 0000000000..7260fd74a1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/astyle/package.py
@@ -0,0 +1,17 @@
+from spack import *
+import os
+
+class Astyle(Package):
+ """A Free, Fast, and Small Automatic Formatter for C, C++, C++/CLI, Objective-C, C#, and Java Source Code."""
+ homepage = "http://astyle.sourceforge.net/"
+ url = "http://downloads.sourceforge.net/project/astyle/astyle/astyle%202.04/astyle_2.04_linux.tar.gz"
+
+ version('2.04', '30b1193a758b0909d06e7ee8dd9627f6')
+
+ def install(self, spec, prefix):
+
+ with working_dir('src'):
+ make('-f',
+ join_path(self.stage.source_path,'build','clang','Makefile'),
+ parallel=False)
+ install(join_path(self.stage.source_path, 'src','bin','astyle'), self.prefix.bin)