initial rust support

This commit is contained in:
Tom Scogland
2016-05-16 09:06:03 -07:00
parent d087086581
commit 404b7c7c4f
2 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from spack import *
import os
class RustBindgen(Package):
"""The rust programming language toolchain"""
homepage = "http://www.rust-lang.org"
url = "https://github.com/crabtw/rust-bindgen"
extends("rust")
def install(self, spec, prefix):
cargo('install', '--root', prefix)