Convert ipa file into deb file for Cydia Repo

Ok some or most ipa’s can be turned into a deb file.

I’ll use the eJuice app as an example.

1.) Rename eJuice.ipa to eJuice.zip

2.) Extract eJuice.zip then look for AppName.app inside the extracted files. Mine will be eJuice.app. You could use “BetterZip”to extract AppName.app folder.

3.) Create a folder called “eJuiceApp_deb” and inside that create 2 directories – DEBIAN and Applications

4.) Drag the extracted eJuice.app into the newly created Applications folder. (NOTE: .DS_Store will be created automatically there, you need to remove it)

5.) Go to the DEBIAN folder and create a new text document and name it control (no .txt extention, please remove it). For some text format or line break character problems, you should better create this “control” file with vim in the macOS.

Inside the control file: it needs to look like this:

复制代码
Package: com.company.appname
Version: Version Here              # 1.0, 2.0, 0.22.1
Name: App Name                     # can be Chinese or any other name
Section: Section Name Here         # game category such as 'Game', 'Tool', 'Theme'
Description: App Description.
Architecture: iphoneos-arm
Author: Jhone <jhone@gmail.com>
Maintainer: Jhone <Jhone@qq.com>
Icon: file:///Applications/eJuice.app/AppIcon.png
复制代码

6.) You should chmod the file 755

chmod 755 control

7) Now package the .deb file

dpkg-deb -Z gzip -b ./eJuiceApp_deb eJuiceApp.deb

And you will then have a File called eJuiceApp.deb and there.

Connect to the device via SSH, Install your app from .deb file, login, rebuild the UI cache, and re-spring the device:

# dpkg –install eJuiceapp.deb
# uicache
# killall backboardd

Now you can distribute this .deb file into cydia repo.

NOTE:

Add “-Z gzip”to build the .deb is nessesory, otherwise it cydia will not decompress .deb successfully. Currently i am using dpkg-deb version 1.20.x on macOS, but the  iphone device cydia was using 1.18.x.  There may be some mis-match bugs or something error. Some tutorial that teaching you do the convertion work will not tell you to set up the compress format. Such methods may work some days ago, but it will not work now.

.DS_Store should be removed before run dpkg-deb. In macOS, you could run ls -al to find such hidden file.

ls –al

After all deb files created, you could run dpkg-scanPackages to collect all deb information. The following command assume that your put serveral .deb files under the current folder.

dpkg-scanPackages ./ > Packages


Ref: https://k2designlab.wordpress.com/2015/05/13/convert-ipa-file-into-deb-file-for-cydia-repo-distribution/
Ref: https://www.weibo.com/p/1001603866345308587102?from=page_100505_profile&amp;wvr=6&amp;mod=wenzhangmod

posted @ 2020-04-19 20:22  opencoder  阅读(451)  评论(0)    收藏  举报
编辑推荐:
· Java线程池详解:高效并发编程的核心利器
· 从“看懂世界”到“改造世界”:AI发展的四个阶段你了解了吗?
· 协程本质是函数加状态机——零基础深入浅出 C++20 协程
· 编码之道,道心破碎。
· 记一次 .NET 某发证机系统 崩溃分析
阅读排行:
· 这5种规则引擎,真香!
· 【大数据高并发核心场景实战】 - 数据持久化之冷热分离
· 【附源码】用Spring AI通杀所有MCP客户端,简直离谱!
· 【好用推荐】免费在线图片压缩工具,附源码
· Go + WebSocket + Chrome Extension:基于真实浏览器环境的 cf_cl
点击右上角即可分享
微信分享提示