2006-06-21 20:22:16 -04:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
import os
|
|
|
|
import os.path
|
2006-11-06 14:59:00 -05:00
|
|
|
import sys
|
2006-06-21 20:22:16 -04:00
|
|
|
import glob
|
|
|
|
|
|
|
|
fst_src = glob.glob('*.c')
|
|
|
|
|
|
|
|
Import('env install_prefix')
|
|
|
|
fst = env.Copy(CC="winegcc")
|
|
|
|
fst.Append (CPPPATH=".")
|
|
|
|
|
2006-10-09 13:56:13 -04:00
|
|
|
if fst['VST']:
|
2006-11-30 22:18:20 -05:00
|
|
|
vst_dir = Dir ('libs/vst')
|
2006-11-30 18:32:18 -05:00
|
|
|
vst_sdk_dir = Dir ('vstsdk2.3')
|
2006-11-30 22:18:20 -05:00
|
|
|
#
|
|
|
|
# if it exists, try to use the Steinberg zip package
|
|
|
|
#
|
|
|
|
vst_sdk_zip = File ('vstsdk2.3.zip')
|
2006-11-30 18:32:18 -05:00
|
|
|
|
2006-11-30 22:18:20 -05:00
|
|
|
if os.access (vst_sdk_zip.abspath, os.F_OK):
|
|
|
|
print 'VST package discovered.'
|
|
|
|
elif os.access ('vst_sdk2_3.zip', os.F_OK):
|
|
|
|
#
|
2006-11-30 22:25:07 -05:00
|
|
|
# add a build target that unpacks the zip package the Steinberg "meta" zip package
|
2006-11-30 22:18:20 -05:00
|
|
|
#
|
|
|
|
vst_meta_zip = fst.Command (vst_sdk_zip, 'vst_sdk2_3.zip', "unzip -o -d ${TARGET.dir} $SOURCES vstsdk2.3.zip" )
|
|
|
|
print 'VST meta-package discovered.'
|
2006-11-06 14:59:00 -05:00
|
|
|
else:
|
2006-11-30 17:44:15 -05:00
|
|
|
if os.access ('vstsdk2.3.zip', os.F_OK) != 1:
|
|
|
|
print 'Did not find vst_sdk2_3.zip or vstsdk2.3.zip in libs/fst.'
|
|
|
|
print 'Make sure the correct file is in the correct location and correctly named.'
|
|
|
|
print 'Please see http://ardour.org/building_vst_support for more information.'
|
|
|
|
sys.exit (1)
|
2006-11-30 18:32:18 -05:00
|
|
|
|
|
|
|
vst_headers = fst.Command ([ 'vst/aeffectx.h', 'vst/AEffect.h' ], vst_sdk_zip, [
|
|
|
|
"unzip -qq -d ${SOURCE.dir} -o $SOURCE",
|
2006-11-30 17:44:15 -05:00
|
|
|
Delete ('$TARGET.dir'),
|
2006-11-30 18:32:18 -05:00
|
|
|
Copy ('${TARGET.dir}', 'libs/fst/vstsdk2.3/source/common'),
|
2006-11-30 17:44:15 -05:00
|
|
|
"sed -i '/struct VstFileType\|struct VstFileSelect/,/};/d' $TARGET"
|
|
|
|
])
|
2006-11-30 18:32:18 -05:00
|
|
|
|
|
|
|
a = fst.Object ('fst', 'fst.c')
|
|
|
|
b = fst.Object ('fstinfofile', 'fstinfofile.c')
|
|
|
|
c = fst.Object ('vstwin', 'vstwin.c')
|
|
|
|
d = fst.Object ('vsti', 'vsti.c')
|
|
|
|
|
|
|
|
Default([vst_headers,a,b,c,d])
|
2006-10-09 13:56:13 -04:00
|
|
|
|
2006-10-09 15:22:35 -04:00
|
|
|
env.Alias('tarball', env.Distribute (env['DISTTREE'],
|
2006-10-09 15:53:04 -04:00
|
|
|
fst_src + ['SConscript',
|
|
|
|
'fst.h',
|
|
|
|
'jackvst.h'
|
|
|
|
] ))
|
2006-06-21 20:22:16 -04:00
|
|
|
|