mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
parent
7a1766fa45
commit
e4b4aadad4
2 changed files with 65 additions and 1 deletions
63
INSTALL.md
Normal file
63
INSTALL.md
Normal file
|
@ -0,0 +1,63 @@
|
|||
Installation guide:
|
||||
===================
|
||||
|
||||
Install from a release
|
||||
----------------------
|
||||
|
||||
Check dependencies and configure build system:
|
||||
|
||||
./configure
|
||||
|
||||
Build Rofi:
|
||||
|
||||
make
|
||||
|
||||
The actual install, execute as root (if needed):
|
||||
|
||||
make install
|
||||
|
||||
|
||||
|
||||
Install a checkout from git
|
||||
---------------------------
|
||||
|
||||
Generate build system:
|
||||
|
||||
autoreconf -i
|
||||
|
||||
Create a build directory:
|
||||
|
||||
mkdir build
|
||||
|
||||
Check dependencies and configure build system:
|
||||
|
||||
../configure
|
||||
|
||||
Build rofi:
|
||||
|
||||
make
|
||||
|
||||
The actual install, execute as root (if needed):
|
||||
|
||||
make install
|
||||
|
||||
|
||||
Options for configure
|
||||
---------------------
|
||||
|
||||
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:
|
||||
|
||||
./configure --prefix=<installation path>
|
||||
|
||||
f.e.
|
||||
|
||||
./configure --prefix=/usr/
|
||||
|
||||
or to install locally:
|
||||
|
||||
./configure --prefix=${HOME}/.local/
|
||||
|
||||
|
|
@ -65,7 +65,8 @@ README.html: README.md
|
|||
EXTRA_DIST=\
|
||||
$(man1_MANS)\
|
||||
$(markdown_FILES)\
|
||||
$(markdown_SC_FILES)
|
||||
$(markdown_SC_FILES)\
|
||||
INSTALL.md
|
||||
|
||||
##
|
||||
# Indent
|
||||
|
|
Loading…
Reference in a new issue