Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtk-sharp.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa04cbdec8a0bf234cbd5ac9a4d0c7f81d542a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class GtkSharp212ReleasePackage (Package):

    def __init__(self):
        Package.__init__(self, 'gtk-sharp',
                         sources=['git://github.com/mono/gtk-sharp.git'],
                         git_branch='gtk-sharp-2-12-branch',
                         revision='3faabd7bdce8f3e3e59f0ee945f4f36ea6d3e870',
                         override_properties={
                             'configure': './bootstrap-2.12 --prefix=%{package_prefix}',
                         }
                         )
        self.make = 'make CSC=mcs'

GtkSharp212ReleasePackage()