You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
100 lines
2.6 KiB
Plaintext
100 lines
2.6 KiB
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
python_src_dest_dir="`dirname \"$0\"`/Mac"
|
||
|
|
python_bin_dest_dir="`dirname \"$0\"`/../../../Binaries/ThirdParty/Python/Mac"
|
||
|
|
python_src_dir="/Library/Frameworks/Python.framework/Versions/2.7"
|
||
|
|
python_bin_lib_dest_dir="$python_bin_dest_dir"/lib
|
||
|
|
|
||
|
|
if [ -d "$python_src_dir" ]
|
||
|
|
then
|
||
|
|
if [ -d "$python_src_dest_dir" ]
|
||
|
|
then
|
||
|
|
echo "Removing Existing Target Directory: $python_src_dest_dir"
|
||
|
|
rm -rf "$python_src_dest_dir"
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [ -d "$python_bin_dest_dir" ]
|
||
|
|
then
|
||
|
|
echo "Removing Existing Target Directory: $python_bin_dest_dir"
|
||
|
|
rm -rf "$python_bin_dest_dir"
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "Copying Python: $python_src_dir"
|
||
|
|
|
||
|
|
mkdir -p "$python_src_dest_dir"/include
|
||
|
|
mkdir -p "$python_bin_dest_dir"/bin
|
||
|
|
mkdir -p "$python_bin_lib_dest_dir"
|
||
|
|
cp -R "$python_src_dir"/include/python2.7/* "$python_src_dest_dir"/include
|
||
|
|
cp -R "$python_src_dir"/bin/* "$python_bin_dest_dir"/bin
|
||
|
|
cp -R "$python_src_dir"/lib/* "$python_bin_lib_dest_dir"
|
||
|
|
cp -R "$python_src_dir"/Python "$python_bin_dest_dir"/libpython2.7.dylib
|
||
|
|
chmod 755 "$python_bin_dest_dir"/libpython2.7.dylib
|
||
|
|
install_name_tool -id @rpath/libpython2.7.dylib "$python_bin_dest_dir"/libpython2.7.dylib
|
||
|
|
cp -R "$python_src_dest_dir"/../NoRedist/TPS/PythonMacBin.tps "$python_bin_dest_dir"/
|
||
|
|
|
||
|
|
echo "Processing Python symlinks: $python_dest_dir"
|
||
|
|
function remove_symlinks()
|
||
|
|
{
|
||
|
|
for file in $1/*
|
||
|
|
do
|
||
|
|
if [ -L "$file" ]
|
||
|
|
then
|
||
|
|
resolved_file="$1/`readlink \"$file\"`"
|
||
|
|
trimmed_file=".${file:$2}"
|
||
|
|
trimmed_resolved_file=".${resolved_file:$2}"
|
||
|
|
echo " Removing symlink: $trimmed_file -> $trimmed_resolved_file"
|
||
|
|
rm -f "$file"
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [ -d "$file" ]
|
||
|
|
then
|
||
|
|
remove_symlinks "$file" $2
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
}
|
||
|
|
remove_symlinks "$python_bin_lib_dest_dir" ${#python_bin_lib_dest_dir}
|
||
|
|
|
||
|
|
function process_symlinks()
|
||
|
|
{
|
||
|
|
for file in $1/*
|
||
|
|
do
|
||
|
|
if [ -L "$file" ]
|
||
|
|
then
|
||
|
|
resolved_file="$1/`readlink \"$file\"`"
|
||
|
|
trimmed_file=".${file:$2}"
|
||
|
|
trimmed_resolved_file=".${resolved_file:$2}"
|
||
|
|
echo " Processing symlink: $trimmed_file -> $trimmed_resolved_file"
|
||
|
|
rm -f "$file"
|
||
|
|
cp "$resolved_file" "$file"
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [ -d "$file" ]
|
||
|
|
then
|
||
|
|
process_symlinks "$file" $2
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
}
|
||
|
|
process_symlinks "$python_bin_dest_dir" ${#python_bin_dest_dir}
|
||
|
|
|
||
|
|
function remove_obj_files()
|
||
|
|
{
|
||
|
|
for file in $1/*
|
||
|
|
do
|
||
|
|
if [ "${file}" != "${file%.pyc}" ] || [ "${file}" != "${file%.pyo}" ]
|
||
|
|
then
|
||
|
|
trimmed_file=".${file:$2}"
|
||
|
|
echo " Removing: $trimmed_file"
|
||
|
|
rm -f "$file"
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [ -d "$file" ]
|
||
|
|
then
|
||
|
|
remove_obj_files "$file" $2
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
}
|
||
|
|
remove_obj_files "$python_bin_lib_dest_dir" ${#python_bin_lib_dest_dir}
|
||
|
|
else
|
||
|
|
echo "Python Source Directory Missing: $python_src_dir"
|
||
|
|
fi
|