-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathsnapcraft.yaml
More file actions
54 lines (51 loc) · 1.54 KB
/
snapcraft.yaml
File metadata and controls
54 lines (51 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: hermes-dec # you probably want to 'snapcraft register <name>'
title: hermes-dec
contact: https://matrix.to/#/#hermes-dec:matrix.org
license: GPL-3.0+
issues: https://github.com/P1sec/hermes-dec/issues
source-code: https://github.com/P1sec/hermes-dec
website: https://www.p1sec.com/blog/releasing-hermes-dec-an-open-source-disassembler-and-decompiler-for-the-react-native-hermes-bytecode
base: core24 # the base snap is the execution environment for this snap
version: '0.1.3' # just for humans, typically '1.2+git' or '1.3.2'
summary: A reverse engineering tool for the React Native Hermes bytecode
description: |
hermes-dec is a reverse-engineering tool which can be used for
disassembling and decompiling React Native files compiled into
the Hermes VM bytecode (HBC) format.
grade: stable
confinement: strict
apps:
hbc-decompiler:
command-chain: [bin/python3.12]
command: bin/hbc-decompiler
plugs:
- home
hbc-disassembler:
command-chain: [bin/python3.12]
command: bin/hbc-disassembler
plugs:
- home
hbc-file-parser:
command-chain: [bin/python3.12]
command: bin/hbc-file-parser
plugs:
- home
parts:
qcsuper:
plugin: python
build-packages:
- build-essential
- python3-dev
- python3-pip
stage-packages:
- libpython3-stdlib
- libpython3.12-minimal
- libpython3.12-stdlib
- python3-venv
- python3-minimal
- python3-wheel
- python3-setuptools
- python3.12-minimal
source: .
build-attributes:
- enable-patchelf