# Maintainer: Christian Wieden # Contributor: Filip SzymaƄski pkgname=hstr pkgver=1.27 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=('autoconf' 'automake' 'ncurses' 'readline') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/dvorka/${pkgname}/archive/${pkgver}.tar.gz) sha256sums=('6c130afd8ca570ee1988a0c7d6a96efeeabd21be7e05ce1f3144bb3c86c74441') prepare() { cd "${pkgname}-${pkgver}" sed -i -e "s###g" src/include/hstr_curses.h sed -i -e "s###g" src/hstr.c } build() { cd "${pkgname}-${pkgver}/dist" ./1-dist.sh cd .. ./configure --prefix=/usr make } package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}/" install install -D -p -m 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -D -p -m 644 Changelog "${pkgdir}/usr/share/doc/${pkgname}/Changelog" install -D -p -m 644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md" }