view gub/specs/libapr-util.py @ 5480:60b3a79de083

subversion: new package. Quite some dependencies or --without-foo are missing...
author Jan Nieuwenhuizen <janneke@gnu.org>
date Wed, 19 Aug 2009 11:57:17 +0200
parents
children 3ecad6b5f9b1
line wrap: on
line source

from gub import tools
import os
if 'BOOTSTRAP' in os.environ.keys (): from gub import target as tools

class Libapr_util__tools (tools.AutoBuild):
    source = 'http://apache.cs.uu.nl/dist/apr/apr-util-1.3.9.tar.gz'
    def _get_build_dependencies (self):
        return [
            'libapr-devel',
            ]
    def configure_command (self):
        return (tools.AutoBuild.configure_command (self)
                + ' --with-apr=%(system_prefix)s'
                )