wscript: parse VERSION from file
authorPaul Brossier <piem@piem.org>
Thu, 17 Nov 2011 01:09:56 +0000 (17:09 -0800)
committerPaul Brossier <piem@piem.org>
Thu, 17 Nov 2011 01:09:56 +0000 (17:09 -0800)
wscript

diff --git a/wscript b/wscript
index 669a0c96e0e7a81e2dc88809908da95a1107869b..417ec2ff0b5199e693a58fa738911ab17215aaf1 100644 (file)
--- a/wscript
+++ b/wscript
 #  - tests: move to new unit test system 
 
 APPNAME = 'aubio'
-VERSION = '0.3.3'
-LIB_VERSION = '2.1.1'
+
+# read from VERSION
+for l in open('VERSION').readlines(): exec (l.strip())
+
+VERSION = '.'.join \
+       ([str(x) for x in [AUBIO_MAJOR_VERSION, AUBIO_MINOR_VERSION, AUBIO_PATCH_VERSION]]) \
+       + AUBIO_VERSION_STATUS
+LIB_VERSION = '.'.join \
+       ([str(x) for x in [LIBAUBIO_LT_CUR, LIBAUBIO_LT_REV, LIBAUBIO_LT_AGE]])
 top = '.'
 out = 'build'