summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/proj
diff options
context:
space:
mode:
authorElizabeth F <rpf2116@columbia.edu>2016-02-29 22:59:28 -0500
committercitibeth <rpf2116@columbia.edu>2016-02-29 23:21:44 -0500
commit15ae92aae9c8ac521bb5d7ee5f210d265494d87a (patch)
tree6612c3cba2de402ae342399fdf30f7674f0fb0c1 /var/spack/repos/builtin/packages/proj
parent21181075b40367b3fa9891c51930c7aedcfab4bf (diff)
downloadspack-15ae92aae9c8ac521bb5d7ee5f210d265494d87a.tar.gz
spack-15ae92aae9c8ac521bb5d7ee5f210d265494d87a.tar.bz2
spack-15ae92aae9c8ac521bb5d7ee5f210d265494d87a.tar.xz
spack-15ae92aae9c8ac521bb5d7ee5f210d265494d87a.zip
New packages added: blitz, netcdf-cxx4, netcdf-fortran, proj, udunits2
Diffstat (limited to 'var/spack/repos/builtin/packages/proj')
-rw-r--r--var/spack/repos/builtin/packages/proj/package.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/proj/package.py b/var/spack/repos/builtin/packages/proj/package.py
new file mode 100644
index 0000000000..4a0d3feac7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/proj/package.py
@@ -0,0 +1,37 @@
+# FIXME:
+# This is a template package file for Spack. We've conveniently
+# put "FIXME" labels next to all the things you'll want to change.
+#
+# Once you've edited all the FIXME's, delete this whole message,
+# save this file, and test out your package like this:
+#
+# spack install proj
+#
+# You can always get back here to change things with:
+#
+# spack edit proj
+#
+# See the spack documentation for more information on building
+# packages.
+#
+from spack import *
+
+class Proj(Package):
+ """Cartographic Projections"""
+ homepage = "https://github.com/OSGeo/proj.4/wiki"
+ url = "http://download.osgeo.org/proj/proj-4.9.2.tar.gz"
+
+ version('4.9.2', '9843131676e31bbd903d60ae7dc76cf9')
+ version('4.9.1', '3cbb2a964fd19a496f5f4265a717d31c')
+ version('4.8.0', 'd815838c92a29179298c126effbb1537')
+ version('4.7.0', '927d34623b52e0209ba2bfcca18fe8cd')
+ version('4.6.1', '7dbaab8431ad50c25669fd3fb28dc493')
+
+ # FIXME: Add dependencies if this package requires them.
+ # depends_on("foo")
+
+ def install(self, spec, prefix):
+ configure('--prefix=%s' % prefix)
+
+ make()
+ make("install")