From 00e3388a0ecd68a7c5090f78b0fe663ce083caab Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Sun, 20 Dec 2020 17:12:47 -0500 Subject: [PATCH] Replace erlang package with from-src recipe --- deps/erlang/Makefile | 8 ++++++++ pkgs-ubuntu.list | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 deps/erlang/Makefile diff --git a/deps/erlang/Makefile b/deps/erlang/Makefile new file mode 100644 index 0000000..fcd9e95 --- /dev/null +++ b/deps/erlang/Makefile @@ -0,0 +1,8 @@ +.PHONY: all +all: + mkdir -p data + cd data && wget -c http://erlang.org/download/otp_src_22.3.tar.gz + cd data && tar vxzf otp_src_22.3.tar.gz + cd data/otp_src_22.3 && ./configure + cd data/otp_src_22.3 && make -j$(shell nproc) + cd data/otp_src_22.3 && make -j$(shell nproc) install diff --git a/pkgs-ubuntu.list b/pkgs-ubuntu.list index c069320..23d6711 100644 --- a/pkgs-ubuntu.list +++ b/pkgs-ubuntu.list @@ -44,7 +44,8 @@ whois mono-complete tlp # Laptop power management tools powertop -erlang +wx3.0-i18n # for building erlang recipe +#erlang # see deps recipe elixir openconnect # VPN cllient compatible with Cisco's AnyConnect graphviz -- 2.20.1