aboutsummaryrefslogtreecommitdiff
path: root/content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2022-06-10 22:20:13 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2022-06-10 22:20:13 +0200
commit0e147a780e74b54afbd56ff7438077d855d5c1c2 (patch)
tree25296b0370513c757416ea6d5e7258b4069b1307 /content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html
parent17d160e5f9cdd4e46b0ab08cf56eaedd8943d885 (diff)
downloadmacroblog.rs-0e147a780e74b54afbd56ff7438077d855d5c1c2.tar.gz
macroblog.rs-0e147a780e74b54afbd56ff7438077d855d5c1c2.tar.bz2
macroblog.rs-0e147a780e74b54afbd56ff7438077d855d5c1c2.zip
ref: Move from HTML to MD
Keep and write in html is pain, so I'm rendering md as html.
Diffstat (limited to 'content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html')
-rw-r--r--content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html b/content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html
deleted file mode 100644
index f47040f..0000000
--- a/content/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<section>
-<p>
- Compiling emacs from source and installing on fedora.
-</p>
-<h3>Installing packages</h3>
-<p>
- Install the following packages:
-<pre><code>sudo dnf install git autoconf make gcc texinfo \
- gnutls-devel giflib-devel ncurses-devel \
- libjpeg-turbo-devel giflib-devel gtk3-devel \
- libXpm-devel libtiff-devel libxml2-devel -y</code></pre>
-</p>
-<h3>Cloning Repository</h3>
-<p>
- Clone repository
- <a href="http://savannah.gnu.org/projects/emacs/">savannah.gnu.org</a>
-<pre><code>git clone -b master git://git.sv.gnu.org/emacs.git</code></pre>
-</p>
-<h3>Compiling</h3>
-<p>
- Navigate to the emacs folder <code>cd emacs</code> and execute the following
- steps:
-<pre><code>./autogen.sh
-./configure
-make -j$(nproc)
-sudo make install
-</code></pre>
- After verify version with <code>./emacs --version</code>, it
- should be equal or higher than <strong>28.0.50</strong>.
-</p>
-</section>