Repository: itsnebulalol/deb-to-ipa
Branch: main
Commit: 8113522f9a69
Files: 3
Total size: 4.2 KB
Directory structure:
gitextract_3uqy3i54/
├── .github/
│ └── workflows/
│ └── run.yml
├── LICENSE
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/run.yml
================================================
name: Run
on:
workflow_dispatch:
inputs:
deb:
description: "Direct URL to deb file"
required: true
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Convert deb to IPA
run: |
curl -L -o ${{ github.workspace }}/app.deb "${{ github.event.inputs.deb }}"
dpkg-deb -X ${{ github.workspace }}/app.deb ${{ github.workspace }}/app
mkdir -p ${{ github.workspace }}/ipa/Payload
cp -R ${{ github.workspace }}/app/Applications/* ${{ github.workspace }}/ipa/Payload
cd ${{ github.workspace }}/ipa
zip -r ${{ github.workspace }}/App.ipa .
- name: Upload IPA
uses: actions/upload-artifact@v4
with:
name: App
path: ${{ github.workspace }}/App.ipa
================================================
FILE: LICENSE
================================================
BSD 3-Clause License
Copyright (c) 2022, Nebula
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
================================================
FILE: README.md
================================================
# Deb to IPA
▶️ Convert an application from a deb to an IPA with a GitHub workflow.
---
# How to use
* Click fork on the top right, then click create fork
* A GitHub account is required, it's free!
> \
> 
* If you have made a fork before, click fetch upstream then fetch and merge
* This should be done every time you want to convert a deb
> 
* Click Actions on the top, then enable actions
> 
* Click run script on the left, then click run workflow on the right
> 
* Paste in the **direct** URL to a deb file in the box, then press run workflow
* Like [this](https://github.com/D0m0/CocoaTop/releases/download/2.2.3/ru.domo.cocoatop64_2.2.3_iphoneos-arm.deb), for example
> 
* Wait for the workflow to be finished, then click on it
> 
* Download the artifact, unzip it, and send the IPA file to your iDevice!
* Airdropping the file is probably the easiest, but you can use something like Dropbox or Mega.
> 
# License
Deb to IPA is licensed under the BSD-3-Clause license, and can be found [here](https://github.com/itsnebulalol/deb-to-ipa/blob/main/LICENSE).
gitextract_3uqy3i54/ ├── .github/ │ └── workflows/ │ └── run.yml ├── LICENSE └── README.md
Condensed preview — 3 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (5K chars).
[
{
"path": ".github/workflows/run.yml",
"chars": 800,
"preview": "name: Run\n\non:\n workflow_dispatch:\n inputs:\n deb:\n description: \"Direct URL to deb file\"\n require"
},
{
"path": "LICENSE",
"chars": 1514,
"preview": "BSD 3-Clause License\n\nCopyright (c) 2022, Nebula\nAll rights reserved.\n\nRedistribution and use in source and binary forms"
},
{
"path": "README.md",
"chars": 1973,
"preview": "# Deb to IPA\n\n▶️ Convert an application from a deb to an IPA with a GitHub workflow.\n\n---\n\n# How to use\n\n* Click fork on"
}
]
About this extraction
This page contains the full source code of the itsnebulalol/deb-to-ipa GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 3 files (4.2 KB), approximately 1.2k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.