Ignore:
Timestamp:
2021-01-20T11:33:34+13:00 (3 years ago)
Author:
davidb
Message:

compile sequence for essentia changed to use the internal script it provides to get the supporting packages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs3-extensions/mars-src/trunk/packages/CASCADE-MAKE/ESSENTIA.sh

    r34388 r34681  
    1414fi
    1515
     16#export CFLAGS="$CFLAGS -I$GEXT_MARS_INSTALLED/include"
     17##export CPPFLAGS="$CPPFLAGS -I$GEXT_MARS_INSTALLED/include"
     18##export CXXFLAGS="$CXXFLAGS -I$GEXT_MARS_INSTALLED/include"
     19#export LDFLAGS="$LDFLAGS -L$GEXT_MARS_INSTALLED/lib"
     20##export LD_LIBRARY_PATH="$GEXT_MARS_INSTALLED/lib"
     21
     22if [ "x$PKG_CONFIG_PATH" = "x" ] ; then
     23    export PKG_CONFIG_PATH="$GEXT_MARS_INSTALLED/lib/pkgconfig"
     24else
     25    export PKG_CONFIG_PATH="$GEXT_MARS_INSTALLED/lib/pkgconfig:$PKG_CONFIG_PATH"
     26
     27fi
     28   
     29
    1630opt_run_untar $force_untar $auto_untar $package $version
    1731
     
    2236    echo "[pushd $package$version]"
    2337    ( cd $package$version ; \
    24       # Do full configure with testing (note: needs full recursive git cloned version of repository to provide models and sample audio files)
    25       echo ./waf configure --build-static --with-python --with-cpptests --with-examples --prefix="$prefix" $@ ; \
    26       eval ./waf configure --build-static --with-python --with-cpptests --with-examples --prefix="$prefix" $@ ; )
     38      # Used to do full configure with testing, but have not dropped that
     39      # (note: needs full recursive git cloned version of repository to provide models and sample audio files)
     40      echo ./packaging/build_3rdparty_static_debian.sh ; \
     41      eval ./packaging/build_3rdparty_static_debian.sh ; \
     42      echo ./waf configure --with-static-examples --with-python --prefix="$prefix" $@ ; \
     43      eval ./waf configure --with-static-examples --with-python --prefix="$prefix" $@ ; )
    2744    if [ $? != 0 ] ; then
    2845        echo "      Error encountered running *configure* stage of $progname"
Note: See TracChangeset for help on using the changeset viewer.