Full Code of itsnebulalol/deb-to-ipa for AI

main 8113522f9a69 cached
3 files
4.2 KB
1.2k tokens
1 requests
Download .txt
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!
> ![image](https://user-images.githubusercontent.com/18669106/180668388-fea832be-dd8d-4387-bb00-64637ec8c4a5.png)\
> ![image](https://user-images.githubusercontent.com/18669106/180667994-4f5e257d-a701-43a3-9613-f860c3990f44.png)

* 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
> ![image](https://user-images.githubusercontent.com/18669106/180668039-895bf508-34ba-4f68-84c2-9dd86b068efa.png)

* Click Actions on the top, then enable actions
> ![image](https://user-images.githubusercontent.com/18669106/180668059-cbfb4099-e40c-4828-b505-1532c6ae326f.png)

* Click run script on the left, then click run workflow on the right
> ![image](https://user-images.githubusercontent.com/18669106/180668091-29077082-8738-4b00-85a2-93b24c97b1b4.png)

* 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
> ![image](https://user-images.githubusercontent.com/18669106/180668191-318d1098-fa80-4e34-ab69-94e02df56975.png)

* Wait for the workflow to be finished, then click on it
> ![image](https://user-images.githubusercontent.com/18669106/180668274-44ec62d7-0be2-47c7-a8ac-ed19fb5e4c5f.png)

* 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.
> ![image](https://user-images.githubusercontent.com/18669106/180668328-12083245-2ef8-43e1-8622-42acbe6dc33c.png)

# 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).
Download .txt
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.

Copied to clipboard!