Robin Gareus
54c4d3adc5
Collect architecture independent data in 'share' subfolder. This also matches the install path
18 lines
268 B
Python
18 lines
268 B
Python
#!/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
|