[MacSDK] Use msbuild's install script instead of duplicating it here
[mono.git] / packaging / MacSDK / msbuild.py
1 import fileinput
2
3
4 class MSBuild (GitHubPackage):
5
6     def __init__(self):
7         GitHubPackage.__init__(self, 'mono', 'msbuild', '15.0',
8                                git_branch='xplat-master')
9
10     def build(self):
11         self.sh('./cibuild.sh --scope Compile --target Mono --host Mono')
12
13     def install(self):
14         self.sh('./install-mono-prefix.sh %s' % self.staged_prefix)
15
16 MSBuild()