-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add fixup_tar to handle rpath and depdendencies
Signed-off-by: AlexandraTrifan <[email protected]>
- Loading branch information
1 parent
ff932a4
commit 24d2371
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#!/bin/bash | ||
|
||
#!/bin/bash -xe | ||
WORKDIR=$(pwd) | ||
cd $WORKDIR/build_tar | ||
# Extract tar.gz to temp folder | ||
tarname=$(find . -maxdepth 1 -name '*.tar.gz') | ||
if [ -z "${tarname}" ]; then | ||
echo "tar.gz not found" | ||
exit 1 | ||
fi | ||
# Remove .tar.gz from filename | ||
subfoldername=$(echo "${tarname}" | rev | cut -b 8- | rev) | ||
|
||
mkdir -p temp_tar | ||
tar -xzf "${tarname}" -C temp_tar | ||
mv "temp_tar/${subfoldername}" temp | ||
cd temp | ||
|
||
deps_dir=Library/Frameworks/libm2k.framework/Versions/Current/Dependencies | ||
libm2k_loc=Library/Frameworks/libm2k.framework/Versions/Current/libm2k | ||
libm2kheaders_loc=Library/Frameworks/libm2k.framework/Versions/Current/Headers/* | ||
|
||
mkdir -p "${deps_dir}" | ||
|
||
# Create links to framework files | ||
mkdir -p usr/local/{lib,include} | ||
ln -fs "../../../${libm2k_loc}" usr/local/lib/libm2k.dylib | ||
# ln -fs "../../../${libm2kheaders_loc}" usr/local/include/iio.h | ||
|
||
# Update rpath of library | ||
install_name_tool -add_rpath @loader_path/. "${libm2k_loc}" | ||
|
||
# Copy dependent libs to local libs, and update rpath of dependencies | ||
for each in $(otool -L "${libm2k_loc}" |grep '\/usr\/local\|homebrew' |cut -f2 | cut -d' ' -f1) ; do | ||
name=$(basename "${each}") | ||
cp "${each}" "${deps_dir}" | ||
chmod +w "${deps_dir}/${name}" | ||
install_name_tool -id "@rpath/Dependencies/${name}" "${deps_dir}/${name}" | ||
install_name_tool -change "${each}" "@rpath/Dependencies/${name}" "${libm2k_loc}" | ||
codesign --force -s - "${deps_dir}/${name}" | ||
done | ||
|
||
# Update tools | ||
for tool in Library/Frameworks/libm2k.framework/Tools/*; | ||
do | ||
install_name_tool -add_rpath @loader_path/../.. "${tool}" | ||
done | ||
|
||
# Remove old tar and create new one | ||
rm "../${tarname}" | ||
tar -czf "../${tarname}" . | ||
cd .. | ||
rm -rf temp | ||
|