This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added all you need to build for iOS
- structural refactor idk
- Loading branch information
Showing
9 changed files
with
2,054 additions
and
626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} |
Oops, something went wrong.