Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
- added all you need to build for iOS
Browse files Browse the repository at this point in the history
- structural refactor idk
  • Loading branch information
Al4ise committed Oct 11, 2022
1 parent ec56c2b commit 028863b
Show file tree
Hide file tree
Showing 9 changed files with 2,054 additions and 626 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
toolchain/
.DS_Store
iOS/
.vscode
Azule-iOS.deb
lib/
test
test
.shellcheckrc
7 changes: 7 additions & 0 deletions .vscode/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

cp azule iOS/usr/bin/azule
cp modules/azule_apt iOS/usr/lib/Azule
cp modules/azule_decrypt iOS/usr/lib/Azule
find iOS -name .DS_Store -exec rm -rf {} \;
dpkg-deb -b iOS Azule-iOS.deb
12 changes: 12 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "bash .vscode/build.sh"
}
]
}
Loading

0 comments on commit 028863b

Please sign in to comment.