hstr/INSTALLATION.md

151 lines
3.4 KiB
Markdown
Raw Normal View History

2015-01-08 06:53:08 +08:00
INSTALLATION
============
2015-05-09 20:44:36 +08:00
Install `hh` using [distribution](#distribution-installation),
from [source code](#installation-from-source-code), on [Ubuntu](#ubuntu),
[Fedora/RHEL/CentOS/ScientificLinux](#fedorarhelcentos), [Debian/Mint](#debianmint),
[Gentoo](#gentoo), [Arch Linux](#arch-linux) or [Mac OS](#mac-os).
UBUNTU
------
Install `hh` on Ubuntu:
```bash
sudo add-apt-repository ppa:ultradvorka/ppa
sudo apt-get update
sudo apt-get install hh
```
2015-01-13 22:24:08 +08:00
Optionally [configure](CONFIGURATION.md) `hh` and check its [man page](README.md#documentation).
FEDORA/RHEL/CENTOS
------------------
With `dnf` available:
```bash
sudo dnf copr enable tbabej/hstr -y
sudo dnf install hstr -y
```
For Fedora based systems without `dnf`:
1. Download the repo directly from the
[copr page](https://copr.fedoraproject.org/coprs/tbabej/hstr/)
and save it into ```/etc/yum.repos.d/``` directory.
1. ```sudo yum install hstr -y```
INSTALLATION FROM SOURCE CODE
-----------------------------
Clone Git repository:
```bash
git clone https://github.com/dvorka/hstr.git
```
Create build files using:
```bash
cd ./dist && ./1-dist.sh && cd ..
```
Install `hh` using:
```bash
./configure && make && make install
```
2015-01-13 22:24:08 +08:00
Optionally [configure](CONFIGURATION.md) `hh` and check its [man page](README.md#documentation).
2015-01-08 05:49:24 +08:00
DISTRIBUTION INSTALLATION
-------------------------
Download latest distribution from project Releases section:
https://github.com/dvorka/hstr/releases
Expand the archive and install `hh` using:
```bash
./configure && make && make install
```
2015-01-13 22:24:08 +08:00
Optionally [configure](CONFIGURATION.md) `hh` and check its [man page](README.md#documentation).
DEBIAN/MINT
-----------
Install `hh` on Debian (Wheezy) or Mint (13) by registering the key:
```bash
wget www.clfh.de/frankh.asc
apt-key add frankh.asc
```
adding the repository:
```bash
deb http://www.clfh.de/debian wheezy main
deb-src http://www.clfh.de/debian wheezy main
```
and installing it:
```bash
apt-get update
apt-get install hh
```
2015-01-13 22:24:08 +08:00
Optionally configure `hh`:
```bash
hh --show-configuration >> ~/.bashrc
```
2015-01-13 22:24:08 +08:00
Optionally [configure](CONFIGURATION.md) `hh` and check its [man page](README.md#documentation).
GENTOO
------
hstr has been added to Portage, see this [bug](https://bugs.gentoo.org/show_bug.cgi?id=527122).
To install hstr, emerge it like so:
```
emerge app-shells/hstr
```
and you should be all set.
ARCH LINUX
----------
Download latest distribution from project Releases section:
https://github.com/dvorka/hstr/releases
2015-02-06 14:18:52 +08:00
Use [PKGBUILD](https://wiki.archlinux.org/index.php/PKGBUILD) in the root of the distribution to build package using `makepkg`:
2015-02-06 14:18:52 +08:00
https://aur.archlinux.org/packages/hstr-git/
Install `hh`.
2015-01-13 22:24:08 +08:00
Optionally [configure](CONFIGURATION.md) `hh` and check its [man page](README.md#documentation).
MAC OS
------
You can either install `hh` from [Homebrew](http://brew.sh/):
```bash
brew install hh
```
or from the source code as described further in this section. First install MacPorts:
http://www.macports.org
2015-01-13 22:24:08 +08:00
And then install readline and ncurses:
```
port install readline
port install ncurses
```
2015-04-12 09:30:40 +08:00
Build and install (if using Homebrew):
```bash
autoreconf -fvi
./configure CFLAGS=-I$(brew --prefix)/opt/readline/include LDFLAGS=-L$(brew --prefix)/opt/readline/lib
make
```
2015-04-12 09:30:40 +08:00
Alternative if using MacPorts:
```bash
autoreconf -fvi
./configure CFLAGS=-I/opt/local/include/ LDFLAGS=-L/opt/local/lib
make
```
2015-01-13 22:24:08 +08:00
Optionally [configure](CONFIGURATION.md) `hh` and check its [man page](README.md#documentation).