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

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

    def __init__(self):
        GnuPackage.__init__(self, 'tar', '1.26',
                            configure_flags=[
                                '--enable-nls=no',
                                'gl_cv_func_getcwd_abort_bug=no'
                            ],
                            override_properties={'build_dependency': True}
                            )

TarPackage()