...
The most recent binary build of Wonder frameworks for both WO 5.3.3 and WO 5.4.3 are available from mDimension's Hudson build server jenkins.wocommunity.org. This installation method gets you the latest version.
...
Code Block |
---|
language | bash |
---|
title | Procedure for WebObjects 5.4.X |
---|
linenumbers | true |
---|
|
# Make a directory for the binaries
mkdir ~/WonderBinaries54
# Go into the directory
cd ~/WonderBinaries54
# Download the binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder54Wonder/lastSuccessfulBuild/artifact/distRoot/Roots/Wonder-Frameworks.tar.gz
# Decompress the archive
tar -xzvf Wonder-Frameworks.tar.gz
# Copy the frameworks to the default runtime path
sudo cp -Rvf *.framework /Library/Frameworks
|
Code Block |
---|
language | bash |
---|
title | Procedure for WebObjects 5.3.X |
---|
linenumbers | true |
---|
|
# Make a directory for the binaries
mkdir ~/WonderBinaries53
# Go into the directory
cd ~/WonderBinaries53
# Download the binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder53WonderLegacy/lastSuccessfulBuild/artifact/distRoot/Roots/Wonder-Frameworks.tar.gz
# Decompress the archive
tar -xzvf Wonder-Frameworks.tar.gz
# Copy the frameworks to the default runtime path
sudo cp -Rvf *.framework /Library/Frameworks
|
...
Code Block |
---|
language | bash |
---|
title | Procedure for WebObjects 5.4.X |
---|
linenumbers | true |
---|
|
# Navigate to the directory where you previously expanded the original binaries
cd ~/WonderBinaries54
# Delete the installed binary frameworks whose names match the nams of the frameworks in this working directory
for FRAMEWORK in `echo *.framework`; do sudo rm -r /Library/Frameworks/${FRAMEWORK}; done
# Delete the contents of this working directory
rm -r *
# Download latest binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder54Wonder/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz
# Expand the archive
tar -xzvf Wonder-Frameworks.tar.gz
# Install the frameworks
sudo cp -Rvf *.framework /Library/Frameworks
|
Code Block |
---|
language | bash |
---|
title | Procedure for WebObjects 5.3.X |
---|
linenumbers | true |
---|
|
# Navigate to the directory where you previously expanded the original binaries
cd ~/WonderBinaries53
# Delete the installed binary frameworks whose names match the nams of the frameworks in this working directory
for FRAMEWORK in `echo *.framework`; do sudo rm -r /Library/Frameworks/${FRAMEWORK}; done
# Delete the contents of this working directory
rm -r *
# Download latest binaries archive
curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder53WonderLegacy/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz
# Expand the archive
tar -xzvf Wonder-Frameworks.tar.gz
# Install the frameworks
sudo cp -Rvf *.framework /Library/Frameworks
|
...