1 #---------------------------------*- sh -*-------------------------------------
3 # \\ / F ield | foam-extend: Open Source CFD
5 # \\ / A nd | For copyright notice see file Copyright
7 #------------------------------------------------------------------------------
9 # This file is part of foam-extend.
11 # foam-extend is free software: you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by the
13 # Free Software Foundation, either version 3 of the License, or (at your
14 # option) any later version.
16 # foam-extend is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
25 # thirdPartyGetFunctions
28 # Functions for managing the third-party packages
30 #------------------------------------------------------------------------------
33 # get, unpack and change to third party directory
34 # - call from within a sub-shell, since it uses 'cd'
38 echo "getUnpack called with incorrect arguments $@"
42 d=$(foamThirdParty -dir $1 2>/dev/null) || {
43 echo "nothing know about '$1'"
47 foamThirdParty -get -unpack $1 && [ -d "$d" ] || return 1
49 [ -d "$d" ] && chmod -R ugo+rX $d 2>/dev/null
55 # copy Make/{files,options} from wmakeFiles/PACKAGE
59 echo "cpMakeFiles called with incorrect arguments $@"
66 for i in $(cd wmakeFiles/$pkg && find . -type f)
71 mkdir -p $dst/$d/Make 2>/dev/null
72 [ -e $dst/$d/Make/$b ] || cp wmakeFiles/$pkg/$i $dst/$d/Make/$b
77 # ----------------------------------------------------------------- end-of-file