Skip to content
This repository was archived by the owner on Dec 17, 2017. It is now read-only.

How to build

SokoloffA edited this page Feb 22, 2012 · 12 revisions

This page is work in progress by 3rd party contributor. please refer How-to-compile-it for official documentation. Thanks.

How to build Razor-qt

Debian Unstable (Sid)

Debian Unstable (Sid) dependencies

In order to build razor-qt (0.4.1) you need these packages to be installed:

  • cmake
  • libmagic-dev
  • libpolkit-qt-1-dev
  • libpolkit-agent-1-dev
  • doxygen (optional)
  • libxcursor-dev
  • libxcomposite-dev
  • libxdamage-dev

So you might run:

apt-get install cmake libmagic-dev libpolkit-qt-1-dev \
libpolkit-agent-1-dev libxcursor-dev libxcomposite-dev \
libxdamage-dev doxigen

to install these packages or use your prefered package manager.

Debian Unstable (Sid) build

Check Any Distribution build instructions

Debian Unstable (Sid) install

Check Any Distribution install instructions

Any distribution

Any distribution requisites

Please check Dependencies and External Dependencies and use your distribution packages accordingly.

Build any distribution

Make sure that you have installed the needed dependencies needed for your distribution These commands are based on 0.4.1 release. Please adapt the commands to the version you are trying to build.

tar xjf razorqt-0.4.1.tar.bz2
cd razorqt-0.4.1
mkdir build
cd build
cmake ../
make

Install any distribution

Make sure that you have build razor-qt

cd razorqt-0.4.1
cd build

And run as root:

make install

That means for Ubuntu users it would be:

sudo make install
Clone this wiki locally