Compiling emacs

This commit is contained in:
Jose 2022-12-14 16:05:16 -03:00
parent 3c0cc55c25
commit 7e7192ce97
2 changed files with 30 additions and 1 deletions

View File

@ -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

28
doc/compile.org Normal file
View File

@ -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