diff options
-rw-r--r-- | wscript | 17 |
1 files changed, 5 insertions, 12 deletions
@@ -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')) |