view gub/specs/zip.py @ 6203:f60548642152

zip: set version.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Tue, 28 Aug 2012 09:28:06 +0200
parents b4fdb9a2ada3
children
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&version=3.0'
    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'