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

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

    def __init__(self):
        Package.__init__(self, 'tiff', '4.0.9',
                         configure_flags=[
                         ],
                         sources=[
                             'http://download.osgeo.org/libtiff/tiff-%{version}.tar.gz',
                         ])

        self.needs_lipo = True

LibTiffPackage()