c371600816
git-svn-id: svn://localhost/ardour2/trunk@1165 d708f5d6-7413-0410-9779-e7cbd77b26cf
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
# -*- python -*-
|
|
|
|
import os
|
|
import os.path
|
|
import sys
|
|
import glob
|
|
|
|
fst_src = glob.glob('*.c')
|
|
|
|
Import('env install_prefix')
|
|
fst = env.Copy(CC="winegcc")
|
|
fst.Append (CPPPATH=".")
|
|
|
|
a = fst.Object ('fst', 'fst.c')
|
|
b = fst.Object ('fstinfofile', 'fstinfofile.c')
|
|
c = fst.Object ('vstwin', 'vstwin.c')
|
|
d = fst.Object ('vsti', 'vsti.c')
|
|
|
|
if fst['VST']:
|
|
if os.access ('vstsdk2.3.zip', os.F_OK):
|
|
fst.Execute ("unzip -o vstsdk2.3.zip")
|
|
fst.Execute (Delete ("vst"))
|
|
fst.Execute (Copy ("vst", "vstsdk2.3/source/common"))
|
|
fst.Execute ("sed -i '/struct VstFileType\|struct VstFileSelect/,/};/d' vst/aeffectx.h")
|
|
Default([a,b,c,d])
|
|
else:
|
|
print 'Did not find libs/fst/vstsdk2.3.zip. Make sure the file is in the correct location and correctly named'
|
|
print 'Please see http://ardour.org/building_vst_support for more information'
|
|
sys.exit (1)
|
|
|
|
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
|
fst_src + ['SConscript',
|
|
'fst.h',
|
|
'jackvst.h'
|
|
] ))
|
|
|