
--no-install-recommends is a big help, whether we're installing all of `erlang` or just `erlang-wx`, but `erlang-wx` is still so close in size that we still just use `erlang`.
10 lines
352 B
Bash
Executable File
10 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
# We actually only need
|
|
# erlang-base erlang-tools erlang-dev erlang-eunit erlang-inets erlang-wx
|
|
# But erlang-wx gives 238 out of the 273 dependencies of a full erlang install.
|
|
sudo apt -y install wget erlang --no-install-recommends
|
|
|
|
wget -q https://zxq9.com/projects/zomp/get_zx && bash get_zx
|
|
export PATH=$PATH:$HOME/bin
|
|
zx run gajudesk
|