From 7e7192ce97528532d548f289744072cd5b1c9758 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 14 Dec 2022 16:05:16 -0300 Subject: [PATCH] Compiling emacs --- README.org | 3 ++- doc/compile.org | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 doc/compile.org diff --git a/README.org b/README.org index 9362a46..e0b1379 100755 --- a/README.org +++ b/README.org @@ -41,7 +41,8 @@ Emacs is free software project with many years of development and a very active * [[./doc/R_in_emacs.org][Using R in emacs]] * [[./doc/citations.org][How to include bibliograpic references in org documents]] * [[./doc/links_emacs.org][Links to learn more about emacs]] - + * [[./doc/ledger.org][Using ledger in emacs]] + * [[./doc/compile.org][Compiling emacs in GNU linux]] * Contenido diff --git a/doc/compile.org b/doc/compile.org new file mode 100644 index 0000000..9c4941d --- /dev/null +++ b/doc/compile.org @@ -0,0 +1,28 @@ +#+date: 2022-12-14 +#+options: toc:nil num:nil + +* Compiling emacs in GNU linux systems + +Install ~build-essential~ + +#+begin_example sh + sudo apt install build-essential +#+end_example + +#+begin_example sh + sudo apt update && sudo apt build-dep emacs +#+end_example + +Download emacs (tarball) and open the directory + +#+begin_example sh + ./autogen.sh +#+end_example + +#+begin_example sh + ./configure +#+end_example + +#+begin_example sh + sudo make install +#+end_example