view gub/specs/zip.py @ 6201:b4fdb9a2ada3

tools::zip.py: new package.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Mon, 27 Aug 2012 20:08:05 +0200
parents
children f60548642152
line wrap: on
line source

from gub import tools

class Zip__tools (tools.AutoBuild):
    source = 'ftp://ftp.info-zip.org/pub/infozip/src/zip30.tgz'
    srcdir_build_broken = True
#    configure_binary = '%(srcdir)s/unix/configure'
    def configure (self):
        self.shadow ()
#    compile_command = 'make -f unix/Makefile generic'
    make_flags = tools.AutoBuild.make_flags + '-f unix/Makefile generic'
    install_flags = tools.AutoBuild.install_flags + ' prefix=%(install_root)s%(system_prefix)s'