remember to install MIDNAM files for waf install
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 21 May 2012 09:25:36 +0000 (09:25 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 21 May 2012 09:25:36 +0000 (09:25 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12352 d708f5d6-7413-0410-9779-e7cbd77b26cf

patchfiles/wscript [new file with mode: 0644]

diff --git a/patchfiles/wscript b/patchfiles/wscript
new file mode 100644 (file)
index 0000000..3b85297
--- /dev/null
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+
+import os
+
+top = '.'
+out = 'build'
+
+def configure(conf):
+    pass
+
+def build(bld):
+    patchfiles = bld.path.ant_glob ('*.midnam')
+    bld.install_files (os.path.join(bld.env['DATADIR'], 'ardour3', 'patchfiles'), patchfiles)
+
+def options(opt):
+    pass