This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/extend-bazaar/Allwmake

57 lines
1.8 KiB
Text
Raw Permalink Normal View History

2014-06-16 16:00:21 +00:00
#!/bin/bash
cd ${0%/*} || exit 1 # run from this directory
echo
if [ ! -z "$EXTEND_BAZAAR_TO_SITE" ]; then
echo "Bazaar stuff installed to $FOAM_SITE_APPBIN and $FOAM_SITE_LIBBIN and will be accessible to everyone. To change this unset variable EXTEND_BAZAAR_TO_SITE"
else
echo "Bazaar stuff installed to $FOAM_USER_APPBIN and $FOAM_USER_LIBBIN and will be accessible only for the current user. To change this set variable EXTEND_BAZAAR_TO_SITE"
fi
echo
setDestination()
{
pkg=$1
if [ ! -z "$EXTEND_BAZAAR_TO_SITE" ]; then
dst="SITE"
wrong="USER"
else
dst="USER"
wrong="SITE"
fi
# remove installation to general binaries
find $pkg -type f | grep "Make/files" | grep -v bak | xargs sed -i.bak -e s/FOAM_LIBBIN/FOAM_${dst}_LIBBIN/g
find $pkg -type f | grep "Make/files" | grep -v bak | xargs sed -i.bak -e s/FOAM_APPBIN/FOAM_${dst}_APPBIN/g
# revert installation to the "other" destination
find $pkg -type f | grep "Make/files" | grep -v bak | xargs sed -i.bak -e s/FOAM_${wrong}_LIBBIN/FOAM_${dst}_LIBBIN/g
find $pkg -type f | grep "Make/files" | grep -v bak | xargs sed -i.bak -e s/FOAM_${wrong}_APPBIN/FOAM_${dst}_APPBIN/g
}
2014-06-16 16:00:21 +00:00
# Install Fluid-Solid Interaction package
if [ ! -d "FluidSolidInteraction" ]; then
wget https://openfoamwiki.net/images/d/d6/Fsi_40.tar.gz
tar zxvf Fsi_40.tar.gz
rm Fsi_40.tar.gz
fi
2014-06-16 16:00:21 +00:00
setDestination FluidSolidInteraction
2014-10-14 21:18:12 +00:00
(
cd FluidSolidInteraction/src
2014-10-14 21:18:12 +00:00
./Allwmake
)
2014-06-16 16:00:21 +00:00
# Install the makeAxialMesh utilitiy
if [ ! -d "MakeAxialMesh" ]; then
svn export svn://svn.code.sf.net/p/openfoam-extend/svn/trunk/Breeder_1.6/utilities/mesh/manipulation/MakeAxialMesh MakeAxialMesh
fi
setDestination MakeAxialMesh
wmake MakeAxialMesh/makeAxialMesh
2014-06-16 16:00:21 +00:00
# ----------------------------------------------------------------- end-of-file