src/wscript_build: do not hardcode install_path
[aubio.git] / src / wscript_build
index 542c564..7c9fc1c 100644 (file)
@@ -1,6 +1,5 @@
 # vim:set syntax=python:
 
-source = ctx.path.ant_glob('*.c **/*.c')
 uselib = []
 uselib += ['FFTW3', 'FFTW3F']
 uselib += ['SAMPLERATE']
@@ -10,12 +9,14 @@ uselib += ['AVFORMAT']
 uselib += ['AVRESAMPLE']
 uselib += ['AVUTIL']
 
+# build each source files
+source = ctx.path.ant_glob('*.c **/*.c')
 ctx(features = 'c',
-      source = source,
-      includes = ['.'],
-      uselib = uselib,
-      lib = 'm',
-      target = 'lib_objects')
+        source = source,
+        includes = ['.'],
+        uselib = uselib,
+        lib = 'm',
+        target = 'lib_objects')
 
 # build libaubio.so (cshlib) and/or libaubio.a (cstlib)
 if ctx.env['DEST_OS'] in ['ios', 'iosimulator']:
@@ -26,14 +27,13 @@ else: #linux, darwin, android, mingw, ...
     build_features = ['cshlib', 'cstlib']
 
 for target in build_features:
-  ctx(features = 'c ' + target,
-      use = ['lib_objects'], #source = source,
-      lib = 'm',
-      target = 'aubio',
-      install_path = '${PREFIX}/lib',
-      vnum = ctx.env['LIB_VERSION'])
+    ctx(features = 'c ' + target,
+            use = ['lib_objects'],
+            lib = 'm',
+            target = 'aubio',
+            vnum = ctx.env['LIB_VERSION'])
 
 # install headers, except _priv.h ones
 ctx.install_files('${PREFIX}/include/aubio/',
-    ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
-    relative_trick=True)
+        ctx.path.ant_glob('**/*.h', excl = ['**_priv.h', 'config.h']),
+        relative_trick=True)