Skip to content

Commit

Permalink
version 1.87.0
Browse files Browse the repository at this point in the history
  • Loading branch information
apotocki committed Jan 5, 2025
1 parent 1db60d7 commit 1c144dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ graph_parallel, mpi, python
use_frameworks!
pod 'boost-iosx', '~> 1.87.0'
# or optionally more precisely e.g.:
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.87.0.2'
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.87.0.3'
```
If you want to use particular boost libraries, specify them as in the following example for log and program_options libraries:
```
Expand Down
2 changes: 1 addition & 1 deletion boost-iosx.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "boost-iosx"
s.version = "1.87.0.2"
s.version = "1.87.0.3"
s.summary = "Boost C++ libraries for macOS, iOS, and visionOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst, iOS Simulator, and visionOS Simulator."
s.homepage = "https://github.com/apotocki/boost-iosx"
s.license = "Boost Software License"
Expand Down
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ if [ ! -f "$BUILD_DIR/frameworks.built" ]; then
BOOST_ARCHIVE_FILE=$BOOST_NAME.tar.bz2

if [ -f $BOOST_ARCHIVE_FILE ]; then
FILE_HASH=$(sha256sum "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }')
FILE_HASH=$(shasum -a 256 "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }')
if [ ! "$FILE_HASH" == "$EXPECTED_HASH" ]; then
echo "Wrong archive hash, trying to reload the archive"
rm "$BOOST_ARCHIVE_FILE"
Expand All @@ -57,7 +57,7 @@ if [ ! -f $BOOST_ARCHIVE_FILE ]; then

# Check if the download was successful
if [ $? -eq 0 ]; then
FILE_HASH=$(sha256sum "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }')
FILE_HASH=$(shasum -a 256 "$BOOST_ARCHIVE_FILE" | awk '{ print $1 }')
if [ "$FILE_HASH" == "$EXPECTED_HASH" ]; then
[ -d boost ] && rm -rf boost
break
Expand Down

0 comments on commit 1c144dd

Please sign in to comment.