diff options
author | David Robillard <d@drobilla.net> | 2013-12-31 03:11:18 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-31 03:11:18 +0000 |
commit | a83edd470077139411f5cf2cb6f0def5dc62237c (patch) | |
tree | df84fcc1e2b17bb49341e2cad6a13c089a9e6486 /wscript | |
parent | 9f0866ed306c16a2d71296828ed16036cb21dd80 (diff) | |
download | ingen-a83edd470077139411f5cf2cb6f0def5dc62237c.tar.gz ingen-a83edd470077139411f5cf2cb6f0def5dc62237c.tar.bz2 ingen-a83edd470077139411f5cf2cb6f0def5dc62237c.zip |
Upload doxygen documentation.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5236 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -206,6 +206,8 @@ def lint(ctx): def upload_docs(ctx): import shutil + + # Ontology documentation specgendir = '/usr/local/share/lv2specgen/' shutil.copy(specgendir + 'style.css', 'build') os.system('lv2specgen.py --list-email=ingen@drobilla.net --list-page=http://lists.drobilla.net/listinfo.cgi/ingen-drobilla.net bundles/ingen.lv2/ingen.ttl %s style.css build/ingen.html' % specgendir) @@ -213,6 +215,10 @@ def upload_docs(ctx): os.system('rsync -avz -e ssh build/ingen.html drobilla@drobilla.net:~/drobilla.net/ns/') os.system('rsync -avz -e ssh %s/style.css drobilla@drobilla.net:~/drobilla.net/ns/' % specgendir) + # Doxygen documentation + os.system('rsync -ravz --delete -e ssh build/doc/html/* drobilla@drobilla.net:~/drobilla.net/docs/ingen/') + + def test(ctx): os.environ['PATH'] = 'tests' + os.pathsep + os.getenv('PATH') os.environ['LD_LIBRARY_PATH'] = os.path.join('src') |