From 54c4d3adc5f0cea54457df04af44397825fc2679 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 23 Feb 2020 15:26:48 +0100 Subject: Clean up top-level source tree Collect architecture independent data in 'share' subfolder. This also matches the install path --- share/midi_maps/wscript | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 share/midi_maps/wscript (limited to 'share/midi_maps/wscript') diff --git a/share/midi_maps/wscript b/share/midi_maps/wscript new file mode 100644 index 0000000000..ec2e65316a --- /dev/null +++ b/share/midi_maps/wscript @@ -0,0 +1,17 @@ +#!/usr/bin/python + +import os + +top = '.' +out = 'build' + +def configure(conf): + pass + +def build(bld): + maps = bld.path.ant_glob ('*.map') + bld.install_files (os.path.join(bld.env['DATADIR'], 'midi_maps'), + maps) + +def options(opt): + pass -- cgit v1.2.3