mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-15 12:30:45 +08:00
d4e90acea6
Made a PKGBUILD for the Archlinux AUR. (https://aur.archlinux.org/packages/hh/)
23 lines
671 B
Bash
23 lines
671 B
Bash
# Maintainer: Ricardo Band <me@xengi.de>
|
|
pkgname=hh
|
|
pkgver=1.2.1
|
|
pkgrel=1
|
|
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."
|
|
arch=('any')
|
|
url="https://github.com/dvorka/hstr"
|
|
license=('Apache')
|
|
makedepends=('readline' 'ncurses')
|
|
_pkgver=$(echo "$pkgver" | sed 's/.[0-9]*$//')
|
|
source=(https://github.com/dvorka/hstr/releases/download/$pkgver/$pkgname-$_pkgver-src.tgz)
|
|
md5sums=('a6b7ab128fff5604374166b488c7b8b7')
|
|
|
|
build() {
|
|
cd "$srcdir/hstr"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/hstr"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|