aboutsummaryrefslogtreecommitdiff
path: root/content/logs/2019-11-16-compiling-emacs.org
diff options
context:
space:
mode:
Diffstat (limited to 'content/logs/2019-11-16-compiling-emacs.org')
-rw-r--r--content/logs/2019-11-16-compiling-emacs.org36
1 files changed, 0 insertions, 36 deletions
diff --git a/content/logs/2019-11-16-compiling-emacs.org b/content/logs/2019-11-16-compiling-emacs.org
deleted file mode 100644
index 23a2181..0000000
--- a/content/logs/2019-11-16-compiling-emacs.org
+++ /dev/null
@@ -1,36 +0,0 @@
----
-title: "Compiling emacs from source code on Fedora"
-date: 2019-11-16
-lastmod: 2020-08-25
-tags: ['emacs', 'emacs27', 'linux', 'fedora']
----
-
-Compiling emacs from source and installing on fedora.
-
-* Installing Packages
-Install the following packages:
-#+BEGIN_SRC
-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
-#+END_SRC
-
-* Cloning Repository
-Clone repository [[http://savannah.gnu.org/projects/emacs/][savannah.gnu.org]]:
-#+BEGIN_SRC
-git clone -b master git://git.sv.gnu.org/emacs.git
-#+END_SRC
-
-* Compiling
-Navigate to emacs folder (~cd emacs~) and execute the following steps
-
-#+BEGIN_SRC sh
-./autogen.sh
-./configure
-make -j$(nproc)
-sudo make install
-#+END_SRC
-
-After verify version with ~emacs --version~, it should be equal or higher than
-=28.0.50=.