aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-10-06 05:14:34 +0000
committerDavid Robillard <d@drobilla.net>2010-10-06 05:14:34 +0000
commit4b75aab281d93d12d0701a4159c696948e0e0142 (patch)
treea7778a5b5ca0df3959d3f347010a222ce968bb3a /wscript
parent15e85e0f366af661fae13e03a51b48f21b5e426c (diff)
downloadlv2-4b75aab281d93d12d0701a4159c696948e0e0142.tar.xz
Make './waf dist' create a date-versioned tarball, e.g. lv2plug.in-2010.10.06.tar.bz2
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/wscript b/wscript
index 90287c9..fa93bba 100644
--- a/wscript
+++ b/wscript
@@ -1,11 +1,13 @@
#!/usr/bin/env python
+import datetime
+import os
import autowaf
# Version of this package (even if built as a child)
-LV2EXT_VERSION = '0.0.0'
+LV2EXT_VERSION = datetime.date.isoformat(datetime.datetime.now()).replace('-', '.')
# Variables for 'waf dist'
-APPNAME = 'lv2ext'
+APPNAME = 'lv2plug.in'
VERSION = LV2EXT_VERSION
# Mandatory variables