-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add README and Applications to macOS dmg
- Loading branch information
1 parent
cf3df57
commit 1a67d69
Showing
4 changed files
with
48 additions
and
7 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
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
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,20 @@ | ||
.PHONY: all app clean | ||
|
||
all: app iaito.dmg | ||
|
||
app: ../../build/iaito.app radare2-unpkg | ||
mkdir disk | ||
cp -a ../../build/iaito.app disk/ | ||
macdeployqt disk/iaito.app -verbose=2 | ||
|
||
iaito.dmg: app | ||
cp doc/README.txt disk/READ_THIS_FIRST.txt | ||
ln -fs /Applications disk/ | ||
hdiutil create -format UDZO -fs APFS -volname iaito -srcfolder disk iaito | ||
|
||
../../build/iaito.app: | ||
echo "Building iaito..." | ||
$(MAKE) -C ../.. | ||
|
||
clean: | ||
rm -rf disk iaito.dmg |
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,19 @@ | ||
IMPORTANT! | ||
|
||
Steps to install iaito: | ||
|
||
1. First go to radare2 releases: | ||
https://github.com/radareorg/radare2/releases/latest | ||
|
||
2. Download the corresponding pkg file: | ||
Apple Silicon (all models): radare2-m1-*.pkg | ||
Intel CPU: radare2-x64-*.pkg | ||
|
||
3. Run the pkg file either by double-click or in Terminal by running: | ||
sudo installer -pkg radare2-*.pkg -target / | ||
|
||
4. Drag and drop the iaito icon to /Applications. | ||
|
||
5. Run this commands from Terminal: | ||
sudo xattr -c /Applications/iaito.app | ||
sudo codesign --force --deep --sign - /Applications/iaito.app |