Move the maintained common-use packages back to the bockbuild repo
[mono-project.git] / bockbuild / MacSDK / mono-basic.py
blobffdbde07da929d61c2a87fcd227a146c20a49dae
2 class MonoBasicPackage (GitHubTarballPackage):
4 def __init__(self):
5 GitHubTarballPackage.__init__(self, 'mono', 'mono-basic', '4.6', 'c93133db1d511f994918391f429fee29b9250004',
6 configure='./configure --prefix="%{staged_profile}"')
8 def install(self):
9 self.sh('./configure --prefix="%{staged_prefix}"')
10 self.sh('make install')
12 MonoBasicPackage()