2014-07-27 06:46:00 -04:00
|
|
|
# Installation guide
|
2014-07-27 03:54:10 -04:00
|
|
|
|
|
|
|
## DEPENDENCY
|
|
|
|
|
|
|
|
### For building:
|
|
|
|
|
2014-07-27 06:46:00 -04:00
|
|
|
* C compiler that supports the c99 standard. (gcc or clang)
|
2014-07-27 03:54:10 -04:00
|
|
|
* make
|
|
|
|
* autoconf
|
2015-03-24 11:02:03 -04:00
|
|
|
* automake (1.11.3 or up)
|
2015-05-25 04:30:32 -04:00
|
|
|
* pkg-config
|
2015-03-24 11:02:03 -04:00
|
|
|
* Developer packages of the external libraries
|
2014-07-27 03:54:10 -04:00
|
|
|
|
|
|
|
### External libraries
|
|
|
|
|
2014-08-03 09:27:13 -04:00
|
|
|
* libpango
|
2015-10-25 06:11:42 -04:00
|
|
|
* libpangocairo
|
|
|
|
* libcairo
|
2016-03-05 05:38:41 -05:00
|
|
|
* libcairo-xcb
|
2015-12-01 16:35:05 -05:00
|
|
|
* libglib2.0 >= 2.40
|
2015-09-13 11:29:50 -04:00
|
|
|
* libstartup-notification-1.0
|
2016-07-28 02:11:23 -04:00
|
|
|
* libxkbcommon >= 0.5.0
|
2016-03-05 10:04:24 -05:00
|
|
|
* libxkbcommon-x11
|
2016-08-31 04:01:49 -04:00
|
|
|
* libxcb (sometimes split, you need libxcb, libxcb-xkb and libxcb-randr libxcb-xinerama)
|
2016-03-05 10:04:24 -05:00
|
|
|
* xcb-util
|
|
|
|
* xcb-util-wm (sometimes split as libxcb-ewmh and libxcb-icccm)
|
2016-07-28 02:11:23 -04:00
|
|
|
* xcb-util-xrm [new module, can be found here](https://github.com/Airblader/xcb-util-xrm/)
|
2014-07-27 03:54:10 -04:00
|
|
|
|
2015-05-25 04:30:32 -04:00
|
|
|
On debian based systems, the developer packages are in the form of: `<package>-dev` on rpm based
|
2016-03-05 10:04:24 -05:00
|
|
|
`<package>-devel`.
|
2015-05-25 04:30:32 -04:00
|
|
|
|
2014-07-27 06:46:00 -04:00
|
|
|
## Install from a release
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
Check dependencies and configure build system:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
./configure
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
Build Rofi:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
make
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
The actual install, execute as root (if needed):
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
make install
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
|
2014-07-27 06:46:00 -04:00
|
|
|
## Install a checkout from git
|
2014-07-21 10:41:31 -04:00
|
|
|
|
2016-03-26 23:04:03 -04:00
|
|
|
The GitHub Pages version of these directions may be out of date. Please use
|
|
|
|
[INSTALL.md from the online repo][master-install] or your local repository.
|
|
|
|
|
|
|
|
[master-install]: https://github.com/DaveDavenport/rofi/blob/master/INSTALL.md#install-a-checkout-from-git
|
|
|
|
|
2016-03-05 07:36:18 -05:00
|
|
|
Pull in dependencies
|
|
|
|
|
|
|
|
```
|
|
|
|
git submodule update --init
|
|
|
|
```
|
|
|
|
|
2014-07-21 10:41:31 -04:00
|
|
|
Generate build system:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
autoreconf -i
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
Create a build directory:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
mkdir build
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
2015-01-28 06:36:23 -05:00
|
|
|
Enter build directory:
|
|
|
|
|
|
|
|
```
|
|
|
|
cd build
|
|
|
|
```
|
|
|
|
|
2014-07-21 10:41:31 -04:00
|
|
|
Check dependencies and configure build system:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
../configure
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
Build rofi:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
make
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
The actual install, execute as root (if needed):
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
make install
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
|
2014-07-27 06:46:00 -04:00
|
|
|
## Options for configure
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
When you run the configure step there are several you can configure. (To see the full list type
|
|
|
|
`./configure --help` ).
|
|
|
|
|
|
|
|
The most useful one to set the installation prefix:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
./configure --prefix=<installation path>
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
|
|
|
f.e.
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
./configure --prefix=/usr/
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
2014-07-27 06:46:00 -04:00
|
|
|
### Install locally
|
|
|
|
|
2014-07-21 10:41:31 -04:00
|
|
|
or to install locally:
|
|
|
|
|
2014-07-27 03:54:10 -04:00
|
|
|
```
|
|
|
|
./configure --prefix=${HOME}/.local/
|
|
|
|
```
|
2014-07-21 10:41:31 -04:00
|
|
|
|
2014-07-27 06:46:00 -04:00
|
|
|
|
2015-03-24 11:02:03 -04:00
|
|
|
## Options for make
|
|
|
|
|
|
|
|
When you run make you can tweak the build process a little.
|
|
|
|
|
|
|
|
### Verbose output
|
|
|
|
|
|
|
|
Show the commands called:
|
|
|
|
|
|
|
|
```
|
|
|
|
make V=1
|
|
|
|
```
|
|
|
|
|
|
|
|
### Debug build
|
|
|
|
|
|
|
|
Compile with debug symbols and no optimization
|
|
|
|
|
|
|
|
```
|
|
|
|
make CFLAGS="-O0 -g3" clean rofi
|
|
|
|
```
|
|
|
|
|
2015-03-28 12:04:34 -04:00
|
|
|
### Get a backtrace
|
|
|
|
|
|
|
|
Getting a backtrace using GDB is not very handy. Because if rofi get stuck, it grabs keyboard and
|
|
|
|
mouse. So if it crashes in GDB you are stuck.
|
|
|
|
The best way to go is to enable core file. (ulimit -c unlimited in bash) then make rofi crash. You
|
|
|
|
can then load the core in GDB.
|
|
|
|
|
|
|
|
```
|
|
|
|
gdb rofi core
|
|
|
|
```
|
2015-10-25 08:54:41 -04:00
|
|
|
|
|
|
|
## Install distribution
|
|
|
|
|
|
|
|
### Debian or Ubuntu
|
|
|
|
|
|
|
|
```
|
|
|
|
apt-get install rofi
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
### Fedora
|
|
|
|
|
|
|
|
rofi from [russianfedora repository](http://ru.fedoracommunity.org/repository)
|
|
|
|
and also
|
2016-08-10 08:55:46 -04:00
|
|
|
[Yaroslav's COPR (Cool Other Package Repo)](https://copr.fedorainfracloud.org/coprs/yaroslav/i3desktop/)
|
2015-10-25 08:54:41 -04:00
|
|
|
|