Differences From Artifact [97df0b6e0a]:
- Executable file build/cackey_osx_build/build_osx.sh — part of check-in [4b8c40e52b] at 2010-07-12 15:46:03 on branch trunk — Added tools for building CACKey on Mac OS X (user: kvanals, size: 4629) [annotate] [blame] [check-ins using]
To Artifact [622c712f8a]:
- Executable file
build/cackey_osx_build/build_osx.sh
— part of check-in
[ee77b32476]
at
2010-07-12 22:40:34
on branch trunk
— Updated build_osx to build correctly under "build" directory.
Updated pmbuild files to have correct permissions and build correctly under "build" directory. (user: kvanals, size: 4632) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
137 138 139 140 141 142 143 |
# Function to build Mac OS X Packages
pkgbuild() {
if [ ${OSX} == "Panther" ]; then
EXT=mpkg
else
EXT=pkg
fi
| | | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
# Function to build Mac OS X Packages
pkgbuild() {
if [ ${OSX} == "Panther" ]; then
EXT=mpkg
else
EXT=pkg
fi
/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -d build/cackey_osx_build/${OSX}_pmbuild.pmdoc -o macbuild/pkg/CACKey_${OSX}.${EXT}
tar --create --directory macbuild/pkg/ --file macbuild/pkg/CACKey_${OSX}.${EXT}.tar CACKey_${OSX}.${EXT}
gzip -9 macbuild/pkg/CACKey_${OSX}.${EXT}.tar
rm -rf macbuild/pkg/CACKey_${OSX}.${EXT}
echo "${OSX} build complete"
}
# Take command line arguments and execute
|
| ︙ | ︙ |