ipa2deb

作者: 魔童转世 | 来源:发表于2021-08-20 17:17 被阅读0次

    第三步,新建三个文件夹
    结构大概是
    |-{标识符}
    |–Applications
    |–DEBIAN

    将解压出来的xxx.app放入 Applications 中
    将control postinst (无后缀的纯文本)文件放 DEBIAN 中

    Control写法

    Package: 标示符 例如 cn.jackyu.wechat2
    Name:  //deb的名字,可以是中文
    Version:          //这里写程序的版本
    Architecture: iphoneos-arm
    Description:  //描述
    Maintainer: //维护人
    Author: //作者
    

    postinst写法(直接复制)(权限755)

    #!/bin/bash
    mkdir -p /private/var/mobile/Documents/
    chown -R mobile:mobile /private/var/mobile/Documents/
    /bin/su -c uicache mobile
    

    最后,打包
    打开终端

    cd Desktop
    dpkg-deb -Z xz -b ./{标识符}.
    

    相关文章

      网友评论

          本文标题:ipa2deb

          本文链接:https://www.haomeiwen.com/subject/nxwtiltx.html