Created
February 28, 2015 01:14
-
-
Save dulacp/afa5f7b13f5579d00d67 to your computer and use it in GitHub Desktop.
Download & Compile Libtiff for iOS (all architectures)
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
# Builds a Libtiff framework for the iPhone and the iPhone Simulator. | |
# Creates a set of universal libraries that can be used on an iPhone and in the | |
# iPhone simulator. Then creates a pseudo-framework to make using libtiff in Xcode | |
# less painful. | |
# | |
# To configure the script, define: | |
# IPHONE_SDKVERSION: iPhone SDK version (e.g. 8.1) | |
# | |
# Then go get the source tar.bz of the libtiff you want to build, shove it in the | |
# same directory as this script, and run "./libtiff.sh". Grab a cuppa. And voila. | |
#=============================================================================== | |
: ${LIB_VERSION:=4.0.3} | |
# Current iPhone SDK | |
: ${IPHONE_SDKVERSION:=`xcodebuild -showsdks | grep iphoneos | egrep "[[:digit:]]+\.[[:digit:]]+" -o | tail -1`} | |
# Specific iPhone SDK | |
# : ${IPHONE_SDKVERSION:=8.1} | |
: ${XCODE_ROOT:=`xcode-select -print-path`} | |
: ${TARBALLDIR:=`pwd`} | |
: ${SRCDIR:=`pwd`/src} | |
: ${IOSBUILDDIR:=`pwd`/ios/build} | |
: ${OSXBUILDDIR:=`pwd`/osx/build} | |
: ${PREFIXDIR:=`pwd`/ios/prefix} | |
: ${IOSFRAMEWORKDIR:=`pwd`/ios/framework} | |
: ${OSXFRAMEWORKDIR:=`pwd`/osx/framework} | |
LIB_TARBALL=$TARBALLDIR/tiff-$LIB_VERSION.tar.gz | |
LIB_SRC=$SRCDIR/tiff-${LIB_VERSION} | |
#=============================================================================== | |
ARM_DEV_CMD="xcrun --sdk iphoneos" | |
SIM_DEV_CMD="xcrun --sdk iphonesimulator" | |
#=============================================================================== | |
# Functions | |
#=============================================================================== | |
abort() | |
{ | |
echo | |
echo "Aborted: $@" | |
exit 1 | |
} | |
doneSection() | |
{ | |
echo | |
echo "=================================================================" | |
echo "Done" | |
echo | |
} | |
#=============================================================================== | |
cleanEverythingReadyToStart() | |
{ | |
echo Cleaning everything before we start to build... | |
rm -rf iphone-build iphonesim-build | |
rm -rf $IOSBUILDDIR | |
rm -rf $PREFIXDIR | |
rm -rf $IOSFRAMEWORKDIR/$FRAMEWORK_NAME.framework | |
doneSection | |
} | |
#=============================================================================== | |
downloadLibtiff() | |
{ | |
if [ ! -s $LIB_TARBALL ]; then | |
echo "Downloading libtiff ${LIB_VERSION}" | |
curl -L -o $LIB_TARBALL http://download.osgeo.org/libtiff/tiff-${LIB_VERSION}.tar.gz | |
fi | |
doneSection | |
} | |
#=============================================================================== | |
unpackLibtiff() | |
{ | |
[ -f "$LIB_TARBALL" ] || abort "Source tarball missing." | |
echo Unpacking libtiff into $SRCDIR... | |
[ -d $SRCDIR ] || mkdir -p $SRCDIR | |
[ -d $LIB_SRC ] || ( cd $SRCDIR; tar xfj $LIB_TARBALL ) | |
[ -d $LIB_SRC ] && echo " ...unpacked as $LIB_SRC" | |
doneSection | |
} | |
#=============================================================================== | |
buildLibtiffForIPhoneOS() | |
{ | |
export CC=$XCODE_ROOT/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang | |
export CC_BASENAME=clang | |
export CXX=$XCODE_ROOT/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ | |
export CXX_BASENAME=clang++ | |
# Ensure that the jpeg project has been created in the right path an compiled | |
LIBJPEG_TARBALL_DIR=$TARBALLDIR/../_libjpeg | |
if [ ! -s $LIBJPEG_TARBALL_DIR ]; then | |
echo " !!! You need to create the directory $LIBJPEG_TARBALL_DIR and put the `libjpeg.sh` script in it" | |
exit 1 | |
fi | |
LIBJPEG_PREFIX_DIR=$LIBJPEG_TARBALL_DIR/ios/prefix | |
if [ ! -s $LIBJPEG_PREFIX_DIR ]; then | |
echo " !!! You need to run the `libjpeg.sh` script in $LIBJPEG_TARBALL_DIR" | |
exit 1 | |
fi | |
echo Building Libtiff for iPhoneSimulator | |
mkdir -p $LIB_SRC/iphonesim-build | |
cd $LIB_SRC/iphonesim-build | |
export CFLAGS="-O3 -arch i386 -arch x86_64 -isysroot $XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator${IPHONE_SDKVERSION}.sdk -mios-simulator-version-min=${IPHONE_SDKVERSION} -Wno-error-implicit-function-declaration" | |
../configure --prefix=$PREFIXDIR/iphonesim-build --disable-dependency-tracking --with-jpeg-include-dir=$LIBJPEG_PREFIX_DIR/iphonesim-build/include --with-jpeg-lib-dir=$LIBJPEG_PREFIX_DIR/iphonesim-build/lib --enable-static=yes --enable-shared=no | |
make | |
make install | |
doneSection | |
echo Building Libtiff for iPhone | |
mkdir -p $LIB_SRC/iphone-build | |
cd $LIB_SRC/iphone-build | |
export CFLAGS="-O3 -arch armv7 -arch armv7s -arch arm64 -isysroot $XCODE_ROOT/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS${IPHONE_SDKVERSION}.sdk -mios-version-min=${IPHONE_SDKVERSION}" | |
../configure --host=arm-apple-darwin --prefix=$PREFIXDIR/iphone-build --disable-dependency-tracking --with-jpeg-include-dir=$LIBJPEG_PREFIX_DIR/iphone-build/include --with-jpeg-lib-dir=$LIBJPEG_PREFIX_DIR/iphone-build/lib --enable-static=yes --enable-shared=no | |
make | |
make install | |
doneSection | |
} | |
#=============================================================================== | |
scrunchAllLibsTogetherInOneLibPerPlatform() | |
{ | |
cd $PREFIXDIR | |
# iOS Device | |
mkdir -p $IOSBUILDDIR/armv7 | |
mkdir -p $IOSBUILDDIR/armv7s | |
mkdir -p $IOSBUILDDIR/arm64 | |
# iOS Simulator | |
mkdir -p $IOSBUILDDIR/i386 | |
mkdir -p $IOSBUILDDIR/x86_64 | |
echo Splitting all existing fat binaries... | |
$ARM_DEV_CMD lipo "iphone-build/lib/libtiff.a" -thin armv7 -o $IOSBUILDDIR/armv7/libtiff.a | |
$ARM_DEV_CMD lipo "iphone-build/lib/libtiff.a" -thin armv7s -o $IOSBUILDDIR/armv7s/libtiff.a | |
$ARM_DEV_CMD lipo "iphone-build/lib/libtiff.a" -thin arm64 -o $IOSBUILDDIR/arm64/libtiff.a | |
$SIM_DEV_CMD lipo "iphonesim-build/lib/libtiff.a" -thin i386 -o $IOSBUILDDIR/i386/libtiff.a | |
$SIM_DEV_CMD lipo "iphonesim-build/lib/libtiff.a" -thin x86_64 -o $IOSBUILDDIR/x86_64/libtiff.a | |
} | |
#=============================================================================== | |
buildFramework() | |
{ | |
: ${1:?} | |
FRAMEWORKDIR=$1 | |
BUILDDIR=$2 | |
VERSION_TYPE=Alpha | |
FRAMEWORK_NAME=libtiff | |
FRAMEWORK_VERSION=A | |
FRAMEWORK_CURRENT_VERSION=$LIB_VERSION | |
FRAMEWORK_COMPATIBILITY_VERSION=$LIB_VERSION | |
FRAMEWORK_BUNDLE=$FRAMEWORKDIR/$FRAMEWORK_NAME.framework | |
echo "Framework: Building $FRAMEWORK_BUNDLE from $BUILDDIR..." | |
rm -rf $FRAMEWORK_BUNDLE | |
echo "Framework: Setting up directories..." | |
mkdir -p $FRAMEWORK_BUNDLE | |
mkdir -p $FRAMEWORK_BUNDLE/Versions | |
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION | |
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/Resources | |
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/Headers | |
mkdir -p $FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/Documentation | |
echo "Framework: Creating symlinks..." | |
ln -s $FRAMEWORK_VERSION $FRAMEWORK_BUNDLE/Versions/Current | |
ln -s Versions/Current/Headers $FRAMEWORK_BUNDLE/Headers | |
ln -s Versions/Current/Resources $FRAMEWORK_BUNDLE/Resources | |
ln -s Versions/Current/Documentation $FRAMEWORK_BUNDLE/Documentation | |
ln -s Versions/Current/$FRAMEWORK_NAME $FRAMEWORK_BUNDLE/$FRAMEWORK_NAME | |
FRAMEWORK_INSTALL_NAME=$FRAMEWORK_BUNDLE/Versions/$FRAMEWORK_VERSION/$FRAMEWORK_NAME | |
echo "Lipoing library into $FRAMEWORK_INSTALL_NAME..." | |
$ARM_DEV_CMD lipo -create $BUILDDIR/*/libtiff.a -o "$FRAMEWORK_INSTALL_NAME" || abort "Lipo $1 failed" | |
echo "Framework: Copying includes..." | |
cp -r $PREFIXDIR/include/libtiff/* $FRAMEWORK_BUNDLE/Headers/ | |
echo "Framework: Creating plist..." | |
cat > $FRAMEWORK_BUNDLE/Resources/Info.plist <<EOF | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleDevelopmentRegion</key> | |
<string>English</string> | |
<key>CFBundleExecutable</key> | |
<string>${FRAMEWORK_NAME}</string> | |
<key>CFBundleIdentifier</key> | |
<string>org.libtiff</string> | |
<key>CFBundleInfoDictionaryVersion</key> | |
<string>6.0</string> | |
<key>CFBundlePackageType</key> | |
<string>FMWK</string> | |
<key>CFBundleSignature</key> | |
<string>????</string> | |
<key>CFBundleVersion</key> | |
<string>${FRAMEWORK_CURRENT_VERSION}</string> | |
</dict> | |
</plist> | |
EOF | |
doneSection | |
} | |
#=============================================================================== | |
# Execution starts here | |
#=============================================================================== | |
mkdir -p $IOSBUILDDIR | |
# cleanEverythingReadyToStart #may want to comment if repeatedly running during dev | |
echo "LIB_VERSION: $LIB_VERSION" | |
echo "LIB_SRC: $LIB_SRC" | |
echo "IOSBUILDDIR: $IOSBUILDDIR" | |
echo "PREFIXDIR: $PREFIXDIR" | |
echo "IOSFRAMEWORKDIR: $IOSFRAMEWORKDIR" | |
echo "IPHONE_SDKVERSION: $IPHONE_SDKVERSION" | |
echo "XCODE_ROOT: $XCODE_ROOT" | |
echo | |
downloadLibtiff | |
unpackLibtiff | |
buildLibtiffForIPhoneOS | |
scrunchAllLibsTogetherInOneLibPerPlatform | |
buildFramework $IOSFRAMEWORKDIR $IOSBUILDDIR | |
echo "Completed successfully" | |
#=============================================================================== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment