Changeset 1181 for trunk/SConstruct
- Timestamp:
- 08/24/06 11:45:27 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SConstruct
r1177 r1181 6 6 #from installtree import InstallTree 7 7 8 version = "2.1 b"8 version = "2.1.0b" 9 9 moduledir = distutils.sysconfig.get_python_lib() 10 10 if platform.architecture()[0] == '64bit': … … 98 98 stagepys = env.SConscript("python/SConscript") 99 99 stage0 = env.Install("stage", "bin/install") 100 stage1 = env.Install("stage/bin", "bin/asap") 101 env.Alias('stage', [stagebuild,stagedoc,stagepys, stage0, stage1]) 100 stage1 = env.Install("stage/bin", ["bin/asap", "bin/asap_update_data"]) 101 stage2 = env.Install("stage/data", "share/ipythonrc-asap") 102 env.Alias('stage', [stagebuild,stagedoc,stagepys, stage0, stage1, stage2]) 102 103 # install locally 103 104 asapmod = env.InstallTree(dest_dir = os.path.join(env["moduledir"], "asap"), … … 110 111 if len(env["makedist"]): 111 112 md =env.CreateDist("dist/asap-%s-%s" % (version, env["makedist"]), 112 ["install", "README", "CHANGELOG", "asap"], 113 ["install", "README", "CHANGELOG", "asap", "data", 114 "bin"], 113 115 "stage")
Note:
See TracChangeset
for help on using the changeset viewer.