- Timestamp:
- Jan 11, 2017, 4:50:59 AM (3 years ago)
- Branches:
- master
- Children:
- 2591ca6
- Parents:
- 9aa52b9
- git-author:
- Chris Johns <chrisj@…> (01/11/17 04:50:59)
- git-committer:
- Chris Johns <chrisj@…> (01/11/17 04:56:04)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
r9aa52b9 recf82d1 10 10 import waf as docs_waf 11 11 12 version = ' Master (4.11.99)'12 version = '4.11 (4.11.2)' 13 13 14 14 build_all = ['user', … … 40 40 for b in building: 41 41 ctx.recurse(b) 42 43 # 44 # Build the catalogue and install with the coverpage and static content. 45 # 42 46 ctx(rule = catalogue, 43 47 target = 'catalogue.xml', 44 48 source = ['wscript', 'common/waf.py']) 45 49 ctx.install_files('${PREFIX}', 'catalogue.xml') 50 ctx.install_files('${PREFIX}', 'common/html-coverpage/index.html') 51 static_dir = ctx.path.find_dir('common/html-coverpage/static') 52 ctx.install_files('${PREFIX}/static', 53 static_dir.ant_glob('**'), 54 cwd = static_dir, 55 relative_trick = True) 46 56 47 57 def install(ctx):
Note: See TracChangeset
for help on using the changeset viewer.