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

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

    def __init__(self):
        GnomePackage.__init__(self,
                              'murrine',
                              version_major='0.98',
                              version_minor='2')

        # FIXME: this may need porting
        # self.sources.append ('patches/murrine-osx.patch')

    def prep(self):
        Package.prep(self)

MurrinePackage()