diff -r 0e813a04b6bd -r 3ee2520ab3e5 dceConf.xml
--- a/dceConf.xml Thu Jul 19 17:16:45 2012 +0200
+++ b/dceConf.xml Fri Jul 20 17:56:05 2012 +0200
@@ -73,4 +73,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ class NscModuleBuild(InlineModuleBuild):
+ def __init__(self):
+ InlineModuleBuild.__init__(self)
+ def build(self, env, jobs):
+ env.run(['python', os.path.join(env.srcdir, 'scons.py'),
+ '-j', str(jobs), '--prefix=' + env.installdir, 'install'],
+ directory=env.srcdir)
+ def clean(self, env):
+ env.run(['python', os.path.join(env.srcdir, 'scons.py'), '-c'],
+ directory=env.srcdir)
+ def check_version(self, env):
+ return True
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+