diff options
author | David Robillard <d@drobilla.net> | 2017-02-08 00:28:38 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-02-08 00:28:38 +0100 |
commit | 0fc02cfb7cbe7f29149e67f8355192b5ceb8a1db (patch) | |
tree | f52961f40e512d5d1798c7a40b48d27a27d141ac /wscript | |
parent | b36868f3b96a436961c0c51b5b2dd71d05da9b12 (diff) | |
download | lv2-0fc02cfb7cbe7f29149e67f8355192b5ceb8a1db.tar.xz |
Add lv2_validate utility
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -140,7 +140,7 @@ def build_index(task): lv2 = rdflib.Namespace('http://lv2plug.in/ns/lv2core#') rdf = rdflib.Namespace('http://www.w3.org/1999/02/22-rdf-syntax-ns#') - model = load_ttl(['lv2/lv2plug.in/ns/meta/meta.ttl']) + model = load_ttl(['lv2/lv2plug.in/ns/lv2core/meta.ttl']) # Get date for this version, and list of all LV2 distributions proj = rdflib.URIRef('http://lv2plug.in/ns/lv2') @@ -271,6 +271,14 @@ def build(bld): INCLUDEDIR = bld.env.INCLUDEDIR, VERSION = VERSION) + # Validator + bld(features = 'subst', + source = 'util/lv2_validate.in', + target = 'lv2_validate', + chmod = Utils.O755, + install_path = '${BINDIR}', + LV2DIR = bld.env.LV2DIR) + # Build extensions for i in exts: build_ext(bld, i.srcpath()) @@ -447,7 +455,7 @@ def posts(ctx): dev_dist = dev_dist) entries = autowaf.get_rdf_news('lv2', - ['lv2/lv2plug.in/ns/meta/meta.ttl'], + ['lv2/lv2plug.in/ns/lv2core/meta.ttl'], None, top_entries, dev_dist = dev_dist) @@ -471,7 +479,7 @@ def dist(ctx): # Write top level amalgamated NEWS file entries = autowaf.get_rdf_news('lv2', - ['lv2/lv2plug.in/ns/meta/meta.ttl'], + ['lv2/lv2plug.in/ns/lv2core/meta.ttl'], None, top_entries, dev_dist = dev_dist) |