summaryrefslogtreecommitdiffstats
path: root/Readme.org
blob: b39f9d51e2abc7246ef2d6ace1c220cfb4145973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
* Ravi's emacs configuration

Get code:
#+BEGIN_SRC sh
git clone /path/to/rewrite.emacs.d
cd rewrite.emacs.d
#+END_SRC

Obtain all submodules:
#+BEGIN_SRC sh
git submodule init
git submodule update
#+END_SRC

** Build compiled code

Doxygen support:
#+BEGIN_SRC sh
pushd site-lisp/doxymacs
./booststrap
./configure
make
popd
#+END_SRC

isync/mbsync to fetch email:
#+BEGIN_SRC sh
pushd site-lisp/isync
touch ChangeLog
./autogen.sh
./configure
make
popd
#+END_SRC
May need to install libdb-devel on Fedora.

mu and mu4e:
#+BEGIN_SRC sh
pushd site-lisp/mu
autoreconf -i
./configure --disable-gtk --disable-webkit --disable-guile
make
popd
#+END_SRC
May need to install glib2-devel, gmime-devel, xapian-core-devel, libuuid-devel on Fedora.

pdf-tools:
#+BEGIN_SRC sh
pushd site-lisp/pdftools
make -s
make install-package
popd
#+END_SRC
May need to install poppler-devel, poppler-glib-devel on Fedora.

rtags:
#+BEGIN_SRC sh
pushd site-lisp/rtags
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=1
make
popd
#+END_SRC