zoukankan      html  css  js  c++  java
  • iOS开发系列-Shell脚本编译SDK

    Library静态库Shell脚本

    #!/bin/bash
    
    #要build的target名
    target_Name="IFlyMSC"
    
    #编译模式  Release、Debug
    build_model=Release
    
    #获取工程当前所在路径
    project_path=$(pwd)
    
    #编译文件路径
    buildPath=${project_path}/build
    
    #导出sdk地址
    exportSdkPath=~/Desktop/${target_Name}-SDK/${build_model}
    
    if [ ! -d $exportSdkPath ]; then
    mkdir -p $exportSdkPath;
    fi
    
    #真机sdk路径
    iphoneos_path=${buildPath}/${build_model}-iphoneos/lib${target_Name}.a
    #模拟器sdk路径
    simulator_path=${buildPath}/${build_model}-iphonesimulator/lib${target_Name}.a
    #合并后sdk路径
    merge_path=${exportSdkPath}/lib${target_Name}.a
    
    #build之前clean一下
    xcodebuild -target ${target_Name} clean
    
    #模拟器build
    xcodebuild -target ${target_Name} -configuration ${build_model} -sdk iphonesimulator ARCHS="i386 x86_64" VALID_ARCHS="i386 x86_64"
    
    #真机build
    xcodebuild -target ${target_Name} -configuration ${build_model} -sdk iphoneos "ARCHS=armv7 arm64" "VALID_ARCHS=armv7 armv7s arm64"
    
    #复制头文件到目标文件夹
    cp -R ${buildPath}/${build_model}-iphoneos/include/${target_Name} ${exportSdkPath}
    
    #合并模拟器和真机.a包
    lipo -create ${iphoneos_path} ${simulator_path} -output ${merge_path}
    
    #压缩合并后的文件
    
    #压缩后的文件名
    package_date=`date '+%Y-%m-%d日%X'`
    sdk_zip_name=lib${target_Name}_${build_model}_${package_date}.zip
    #跳转到sdk的输出路径
    cd ${exportSdkPath}
    #压缩sdk输出路径下的所有文件
    zip -r ~/Desktop/${target_Name}-SDK/${sdk_zip_name} ./*
    
    #打开合并后的sdk所在路径
    open ${exportSdkPath}
    
    #删除build文件
    if [ -d ${buildPath} ]; then
    rm -rf ${buildPath}
    fi
    

    Framework静态库Shell脚本编译

    #!/bin/bash
    
    #要build的target名
    target_Name="HTKit"
    
    #编译模式  Release、Debug
    build_model=Release
    
    #获取工程当前所在路径
    project_path=$(pwd)
    
    #编译文件路径
    buildPath=${project_path}/build
    
    #导出sdk地址
    exportSdkPath=~/Desktop/${target_Name}-SDK/${build_model}
    
    if [ ! -d $exportSdkPath ]; then
    mkdir -p $exportSdkPath;
    fi
    
    #真机sdk路径
    iphoneos_path=${buildPath}/${build_model}-iphoneos/${target_Name}.framework/${target_Name}
    #模拟器sdk路径
    simulator_path=${buildPath}/${build_model}-iphonesimulator/${target_Name}.framework/${target_Name}
    #合并后sdk路径
    merge_path=${exportSdkPath}/${target_Name}.framework/${target_Name}
    
    #build之前clean一下
    xcodebuild -target ${target_Name} clean
    
    #模拟器build
    xcodebuild -target ${target_Name} -configuration ${build_model} -sdk iphonesimulator ARCHS="i386 x86_64" VALID_ARCHS="i386 x86_64"
    
    #真机build
    xcodebuild -target ${target_Name} -configuration ${build_model} -sdk iphoneos "ARCHS=armv7 arm64" "VALID_ARCHS=armv7 armv7s arm64"
    
    #复制真机.framework到目标文件夹
    cp -R ${buildPath}/${build_model}-iphoneos/${target_Name}.framework ${exportSdkPath}
    
    #合并模拟器和真机.a包
    lipo -create ${iphoneos_path} ${simulator_path} -output ${merge_path}
    
    #删除framework下的Info.plist
    rm -r -f ${exportSdkPath}/${target_Name}.framework/Info.plist
    
    #删除framework下的Modules
    rm -r -f ${exportSdkPath}/${target_Name}.framework/Modules
    
    #压缩合并后的文件
    
    #压缩后的文件名
    package_date=`date '+%Y-%m-%d日%X'`
    sdk_zip_name=lib${target_Name}_${build_model}_${package_date}.zip
    #跳转到sdk的输出路径
    cd ${exportSdkPath}
    #压缩sdk输出路径下的所有文件
    zip -r ~/Desktop/${target_Name}-SDK/${sdk_zip_name} ./*
    
    #打开合并后的sdk所在路径
    open ${exportSdkPath}
    
    #删除build文件
    if [ -d ${buildPath} ]; then
    rm -rf ${buildPath}
    fi
    
  • 相关阅读:
    Ubuntu下的OpenResty 安装
    你真的理解devDependencies和dependencies区别吗?
    "No user exists for uid 501"
    Mongo的备份和恢复(mongodump 和mongorestore )
    mongodb最大连接数、最大连接数修改
    ssh 断开解决办法
    Know How To Use Check Box Mapping Of Other Values Property In Oracle Forms
    Date Picker Calendar For Oracle Forms 6i
    Freebie: Date Picker Calendar Demo Form For Oracle Forms 6i
    Creating Excel File in Oracle Forms
  • 原文地址:https://www.cnblogs.com/CoderHong/p/9433710.html
Copyright © 2011-2022 走看看