1
0
Fork 0

add cutter setup script

This commit is contained in:
Kim, Jimin 2022-11-12 01:23:43 +09:00
parent 0f55300461
commit f72aea884b

15
src/setup/dev/cutter.py Normal file
View file

@ -0,0 +1,15 @@
from src.util import appimage_install, get_latest_appimage_url_from_github
name = "Cutter"
def setup():
"""
Reverse engineering tool with GUI
"""
appimage_install(
get_latest_appimage_url_from_github("rizinorg/cutter"),
"cutter",
)