Add factory plugin tags + favorites

This commit is contained in:
Robin Gareus 2018-01-30 01:32:59 +01:00
parent 257a1dde91
commit 49130df35b
4 changed files with 28 additions and 0 deletions

17
plugin_metadata/wscript Normal file
View file

@ -0,0 +1,17 @@
#!/usr/bin/python
import os
top = '.'
out = 'build'
def configure(conf):
pass
def build(bld):
maps = bld.path.ant_glob ('*')
bld.install_files (os.path.join(bld.env['DATADIR'], 'plugin_metadata'),
maps)
def options(opt):
pass