import fileinput class MSBuild (GitHubPackage): def __init__ (self): GitHubPackage.__init__ (self, 'mono', 'msbuild', '15.3', revision = 'bce6977da8fdb05f30d80bfc5649d9edd543b026', git_branch = 'xplat-master') def build (self): self.sh ('./cibuild.sh --scope Compile --target Mono --host Mono --config Release') def install (self): self.sh ('./install-mono-prefix.sh %s' % self.staged_prefix) MSBuild ()