Skip to content

Commit

Permalink
Add decai (r2ai)
Browse files Browse the repository at this point in the history
  • Loading branch information
prodrigestivill committed Sep 7, 2024
1 parent 37a3611 commit 7462dc1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/scripts/update-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ R2FRIDA_VERSION=$(getLatestReleaseTag nowsecure/r2frida)
R2DEC_VERSION=$(getLatestReleaseTag wargio/r2dec-js)
YARA_VERSION=$(getLatestReleaseTag VirusTotal/yara v)
R2YARA_VERSION=$(getLatestReleaseTag radareorg/r2yara)
R2AI_VERSION=$(getLatestReleaseTag radareorg/r2ai)
R2BOOK_VERSION=$(getLatestReleaseTag radareorg/radare2-book)
EOF
1 change: 1 addition & 0 deletions README-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The resulting build includes the following projects:
* [r2frida](https://github.com/nowsecure/r2frida) (only in supported platforms)
* [r2dec](https://github.com/wargio/r2dec-js)
* [r2yara](https://github.com/radareorg/r2yara)
* [r2ai](https://github.com/radareorg/r2ai) (only decai r2plugin)
* [r2pipe](https://pypi.org/project/r2pipe/) (for Python)
* [r2book](https://github.com/radareorg/radare2-book) (as info page)

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The resulting build includes the following projects:
* [r2frida](https://github.com/nowsecure/r2frida) (only in supported platforms)
* [r2dec](https://github.com/wargio/r2dec-js)
* [r2yara](https://github.com/radareorg/r2yara)
* [r2ai](https://github.com/radareorg/r2ai) (only decai r2plugin)
* [r2book](https://github.com/radareorg/radare2-book) (as `info` file)

## Install the snap
Expand Down
6 changes: 6 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ RUN curl -L "https://github.com/radareorg/r2yara/archive/refs/tags/${R2YARA_VERS
./configure --prefix="$PREFIX" --with-checks-level=0 && \
make && make install

# Add decai (r2ai)
ARG R2AI_VERSION
RUN curl -L "https://github.com/radareorg/r2ai/archive/refs/tags/${R2AI_VERSION}.tar.gz" | tar -xz && \
cd "r2ai-${R2AI_VERSION}" && \
make -C decai install

# Add r2book
ARG R2BOOK_VERSION
RUN mkdir -p "$PREFIX/share/info" && \
Expand Down
1 change: 1 addition & 0 deletions versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ R2FRIDA_VERSION=5.9.4
R2DEC_VERSION=5.9.2
YARA_VERSION=4.5.1
R2YARA_VERSION=1.3.0
R2AI_VERSION=0.8.4
R2BOOK_VERSION=5.9.4

0 comments on commit 7462dc1

Please sign in to comment.