mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-23 17:25:54 +01:00
Fixes macOS packaging issues
* Help is installed to correct location * dSYM file is ignored * Fixes weird issue with Conan picking up libraries from dSYM
This commit is contained in:
@@ -7,14 +7,19 @@ function extractDSym()
|
||||
local lib=$1
|
||||
local libfile=$(basename $lib)
|
||||
local libname="${libfile%.*}"
|
||||
local targetdir=$(dirname $lib)
|
||||
local targetdir=$2
|
||||
local dsymfile=${targetdir}/${libname}.dSYM
|
||||
|
||||
if [[ ! -L "$lib" && "$lib" != "{}" && $lib != *"dSYM"* ]]; then
|
||||
echo "Extracting dSYMs from ${libfile} to ${libname}.dSYM"
|
||||
dsymutil "$lib" -o "${targetdir}/${libname}.dSYM"
|
||||
if [[ -d "$dsymfile" ]]; then
|
||||
echo "Skipping dSYM generation for $libfile: dSYM exists"
|
||||
elif [[ ! -L "$lib" && "$lib" != "{}" && $lib != *"dSYM"* ]]; then
|
||||
echo "Extracting dSYMs from $libfile to $dsymfile"
|
||||
dsymutil "$lib" -o "$dsymfile"
|
||||
fi
|
||||
}
|
||||
|
||||
export -f extractDSym
|
||||
|
||||
find $CONAN_USER_HOME -name "*.dylib" | xargs -I {} bash -c 'extractDSym "{}"'
|
||||
mkdir -p "$CONAN_USER_HOME/dsyms"
|
||||
|
||||
find $CONAN_USER_HOME -name "*.dylib" | xargs -I {} bash -c "extractDSym \"{}\" \"$CONAN_USER_HOME/dsyms\""
|
||||
|
||||
Reference in New Issue
Block a user