summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript17
1 files changed, 5 insertions, 12 deletions
diff --git a/wscript b/wscript
index 2c0d813..26d24f1 100644
--- a/wscript
+++ b/wscript
@@ -19,6 +19,11 @@ VERSION = PATCHAGE_VERSION
top = '.'
out = 'build'
+# Release variables
+uri = 'http://drobilla.net/sw/patchage'
+dist_pattern = 'http://download.drobilla.net/patchage-%d.%d.%d.tar.bz2'
+post_tags = ['Hacking', 'LAD', 'Patchage']
+
def options(ctx):
ctx.load('compiler_cxx')
@@ -208,15 +213,3 @@ def build(bld):
os.path.join('icons', 'scalable', 'patchage.svg'))
bld.install_files('${MANDIR}/man1', bld.path.ant_glob('doc/*.1'))
-
-
-def posts(ctx):
- path = str(ctx.path.abspath())
- autowaf.news_to_posts(
- os.path.join(path, 'NEWS'),
- {'title': 'Patchage',
- 'description': autowaf.get_blurb(os.path.join(path, 'README')),
- 'dist_pattern': 'http://download.drobilla.net/patchage-%s.tar.bz2'},
- {'Author': 'drobilla',
- 'Tags': 'Hacking, LAD, Patchage'},
- os.path.join(out, 'posts'))