Accommodated mac-intel-essential.sh for directory tree changes. (#562)

Since the libraries for MacOS are now distinguishable between mac_arm and mac_intel, a minor change has been made to the script to place the compiled libjuice library to the appropriate folder, i.e. `mac_intel`.
This commit is contained in:
Motoo Chhotoo Chintoo 2023-12-08 23:31:43 +05:30 committed by Agent X
parent 7868cc26df
commit 7ffb98e896
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
dl_ver=1.2.2
#Download #Download
echo Downloading: libjuice echo Downloading: libjuice
dl_ver=1.2.2
curl -L https://github.com/paullouisageneau/libjuice/archive/refs/tags/v"$dl_ver".tar.gz -o libjuice.tar.gz curl -L https://github.com/paullouisageneau/libjuice/archive/refs/tags/v"$dl_ver".tar.gz -o libjuice.tar.gz
tar -xf libjuice.tar.gz tar -xf libjuice.tar.gz
@ -13,9 +13,9 @@ cd libjuice-"$dl_ver"
cmake -B build && cd build cmake -B build && cd build
make -j2 make -j2
#Copy to lib/coopnet/mac/libjuice.dylib #Copy to ../../lib/coopnet/mac_intel/libjuice.1.2.2.dylib
echo " echo "
Copying: libjuice to 'lib/coopnet/mac'" Copying: libjuice to 'lib/coopnet/mac_intel/'"
cp libjuice."$dl_ver".dylib ../../lib/coopnet/mac/libjuice."$dl_ver".dylib cp libjuice."$dl_ver".dylib ../../lib/coopnet/mac_intel/libjuice."$dl_ver".dylib
echo Done echo Done