changeset 6201:b4fdb9a2ada3

tools::zip.py: new package.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Mon, 27 Aug 2012 20:08:05 +0200
parents a4dfe4e574ec
children fdc0cf703c9d
files gub/specs/zip.py
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gub/specs/zip.py	Mon Aug 27 20:08:05 2012 +0200
@@ -0,0 +1,11 @@
+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'