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

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

    def __init__(self):
        Package.__init__(self, 'gtk-quartz-engine',
                         sources=[
                             'git://github.com/mono/gtk-quartz-engine.git'],
                         override_properties={
                             'configure': './autogen.sh --prefix=%{package_prefix}',
                             'needs_lipo': True
                         },
                         revision='9555a08f0c9c98d02153c9d77b54a2dd83ce5d6f')

GtkQuartzEnginePackage()