Fix tarball versioning.
[asdcplib-cth.git] / wscript
diff --git a/wscript b/wscript
index 485c397c3ec21b938656f2bd280cdec6131e1196..ff44e841d2cb09eecf0bc50f2336aa533ac5cadb 100644 (file)
--- a/wscript
+++ b/wscript
@@ -1,11 +1,21 @@
 import subprocess
+import shlex
 import os
 import sys
 import distutils.spawn
 from waflib import Logs
 
 APPNAME = 'libasdcp-cth'
-VERSION = '0.1.3devel'
+
+if os.path.exists('.git'):
+    this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
+    last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]
+    if this_version == '':
+        VERSION = '%sdevel' % last_version[1:].strip()
+    else:
+        VERSION = this_version[1:].strip()
+else:
+    VERSION = open('VERSION').read().strip()
 
 def options(opt):
     opt.load('compiler_cxx')
@@ -64,6 +74,8 @@ def configure(conf):
                    lib=['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
                    uselib_store='BOOST_FILESYSTEM')
 
+    conf.check(header_name='valgrind/memcheck.h', mandatory=False)
+
     conf.recurse('src')
 
 def build(bld):
@@ -91,3 +103,8 @@ def post(ctx):
 
 def tags(bld):
     os.system('etags src/*.cc src/*.h')
+
+def dist(bld):
+    f = open('VERSION', 'w')
+    print>>f,VERSION
+    f.close()