xaizek / hstr (License: Apachev2) (since 2018-12-07)
Bash and Zsh shell history suggest box - easily view, navigate, search and manage your command history.
Commit d4e90acea67780168f54ea637929e5c6e5e12807

PKGBUILD for Archlinux
Made a PKGBUILD for the Archlinux AUR. (https://aur.archlinux.org/packages/hh/)
Author: Ricardo Band
Author date (UTC): 2014-02-26 02:01
Committer name: Ricardo Band
Committer date (UTC): 2014-02-26 02:01
Parent(s): c0e85fa168868854f32d7c259ef87650d3bb52eb
Signing key:
Tree: fc9280e852c3cefb4d99e0cd9572da820d46609e
File Lines added Lines deleted
PKGBUILD 23 0
File PKGBUILD added (mode: 100644) (index 0000000..926b882)
1 # Maintainer: Ricardo Band <me@xengi.de>
2 pkgname=hh
3 pkgver=1.2.1
4 pkgrel=1
5 pkgdesc="A command line utility that brings improved BASH command completion from the history. It aims to make completion easier and more efficient than Ctrl-r."
6 arch=('any')
7 url="https://github.com/dvorka/hstr"
8 license=('Apache')
9 makedepends=('readline' 'ncurses')
10 _pkgver=$(echo "$pkgver" | sed 's/.[0-9]*$//')
11 source=(https://github.com/dvorka/hstr/releases/download/$pkgver/$pkgname-$_pkgver-src.tgz)
12 md5sums=('a6b7ab128fff5604374166b488c7b8b7')
13
14 build() {
15 cd "$srcdir/hstr"
16 ./configure --prefix=/usr
17 make
18 }
19
20 package() {
21 cd "$srcdir/hstr"
22 make DESTDIR="$pkgdir/" install
23 }
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/hstr

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/hstr

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master