Skip to content

Installing under Arch Linux

Brenton Horne edited this page Nov 5, 2015 · 7 revisions

Installing Moksha under Arch Linux is potentially a fairly simple task and consists of installing the dependencies and then compiling and installing Moksha.

Installing Dependencies

To install Moksha's dependencies run:

sudo pacman -S elementary doxygen libjpeg-turbo xcb-util-keysyms wget --noconfirm
sudo pacman -S pulseaudio automake --noconfirm
EN=https://download.enlightenment.org/releases
wget -cqO- $EN/e_dbus-1.7.10.tar.bz2 | tar -xv
cd e_dbus-1.7.10
./autogen.sh --prefix=/usr && make && sudo make install

Compiling and Installing Moksha

After getting the dependencies, merely run:

JEF=https://github.com/JeffHoogland/moksha/archive
wget -cqO- $JEF/0.1.0.tar.gz | tar -xz --transform=s/moksha-0.1.0/moksha/
cd moksha
./autogen.sh --prefix=/usr && make && sudo make install

to install Moksha.

Clone this wiki locally