summaryrefslogtreecommitdiff
path: root/libs/soundtouch
diff options
context:
space:
mode:
Diffstat (limited to 'libs/soundtouch')
-rw-r--r--libs/soundtouch/SConscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/soundtouch/SConscript b/libs/soundtouch/SConscript
index 40ee2fe6ce..d37fd1f99b 100644
--- a/libs/soundtouch/SConscript
+++ b/libs/soundtouch/SConscript
@@ -1,5 +1,7 @@
# -*- python -*-
+import os
+import os.path
import glob
soundtouch_files = Split("""
@@ -13,7 +15,7 @@ mmx_gcc.cpp
cpu_detect_x86_gcc.cpp
""")
-Import('env')
+Import('env install_prefix')
st = env.Copy()
st.Append(CCFLAGS="-DHAVE_CONFIG_H -D_REENTRANT -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE")
@@ -21,6 +23,8 @@ libst = st.SharedLibrary('soundtouch', soundtouch_files)
Default(libst)
+env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), libst))
+
env.Alias('tarball', env.Distribute (env['DISTTREE'],
[ 'SConscript'] + soundtouch_files + glob.glob('*.h')))