mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Update installation page.
This commit is contained in:
parent
e52f846089
commit
f1f4e55d43
1 changed files with 16 additions and 8 deletions
24
INSTALL.md
24
INSTALL.md
|
@ -1,10 +1,10 @@
|
|||
# Installation guide:
|
||||
# Installation guide
|
||||
|
||||
## DEPENDENCY
|
||||
|
||||
### For building:
|
||||
|
||||
* C compiler (gcc or clang)
|
||||
* C compiler that supports the c99 standard. (gcc or clang)
|
||||
* make
|
||||
* autoconf
|
||||
* automake
|
||||
|
@ -22,8 +22,7 @@
|
|||
|
||||
|
||||
|
||||
Install from a release
|
||||
----------------------
|
||||
## Install from a release
|
||||
|
||||
Check dependencies and configure build system:
|
||||
|
||||
|
@ -44,8 +43,7 @@ make install
|
|||
```
|
||||
|
||||
|
||||
Install a checkout from git
|
||||
---------------------------
|
||||
## Install a checkout from git
|
||||
|
||||
Generate build system:
|
||||
|
||||
|
@ -78,8 +76,7 @@ make install
|
|||
```
|
||||
|
||||
|
||||
Options for configure
|
||||
---------------------
|
||||
## Options for configure
|
||||
|
||||
When you run the configure step there are several you can configure. (To see the full list type
|
||||
`./configure --help` ).
|
||||
|
@ -96,9 +93,20 @@ f.e.
|
|||
./configure --prefix=/usr/
|
||||
```
|
||||
|
||||
### Install locally
|
||||
|
||||
or to install locally:
|
||||
|
||||
```
|
||||
./configure --prefix=${HOME}/.local/
|
||||
```
|
||||
|
||||
### I3 workaround
|
||||
|
||||
If i3 is installed in a non-standard prefix, point it to the right location using:
|
||||
|
||||
```
|
||||
CFLAGS="-I/weird/i3/path/include/" ../configure
|
||||
CFLAGS="-I/weird/i3/path/include/" make
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue