Changeset 1181 for trunk/SConstruct


Ignore:
Timestamp:
08/24/06 11:45:27 (18 years ago)
Author:
mar637
Message:

finishing touches to making scons makedist=xyz work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SConstruct

    r1177 r1181  
    66#from installtree import InstallTree
    77
    8 version = "2.1b"
     8version = "2.1.0b"
    99moduledir = distutils.sysconfig.get_python_lib()
    1010if  platform.architecture()[0] == '64bit':
     
    9898stagepys = env.SConscript("python/SConscript")
    9999stage0 = env.Install("stage", "bin/install")
    100 stage1 = env.Install("stage/bin", "bin/asap")
    101 env.Alias('stage', [stagebuild,stagedoc,stagepys, stage0, stage1])
     100stage1 = env.Install("stage/bin", ["bin/asap", "bin/asap_update_data"])
     101stage2 = env.Install("stage/data", "share/ipythonrc-asap")
     102env.Alias('stage', [stagebuild,stagedoc,stagepys, stage0, stage1, stage2])
    102103# install locally
    103104asapmod = env.InstallTree(dest_dir = os.path.join(env["moduledir"], "asap"),
     
    110111if len(env["makedist"]):
    111112    md =env.CreateDist("dist/asap-%s-%s" % (version, env["makedist"]),
    112                    ["install", "README", "CHANGELOG", "asap"],
     113                   ["install", "README", "CHANGELOG", "asap", "data",
     114                    "bin"],
    113115                   "stage")
Note: See TracChangeset for help on using the changeset viewer.