ytsutano / axmldec

Stand-alone binary AndroidManifest.xml decoder
ISC License
211 stars 32 forks source link

Installing on Ubuntu #11

Open nzalik opened 2 years ago

nzalik commented 2 years ago

Please i need steps to install this tool on my ubuntu. Thank you

ctrlcctrlv commented 2 years ago
sudo apt install libboost-all-dev cmake build-essential
cmake -DCMAKE_BUILD_TYPE=Release . && make
mv axmldec ~/.local/bin/
HenrikBengtsson commented 1 year ago
sudo apt install libboost-all-dev cmake build-essential

FWIW, I'm on Ubuntu 22.04 and instead of libboost-all-dev, which installs a lot of packages, for me, it was sufficient to install the following subset:

sudo apt install libboost-dev libboost-system-dev libboost-iostreams-dev libboost-program-options-dev libboost-locale-dev

Disclaimer: It could be that there are other libboost-*-dev packages that I had installed from previous software installs on this machine.