Update PKGBUILD to latest version

Updatet version, md5sum.

Add sed commands in build to incorporate ncurses structure under arch.
This commit is contained in:
fastgar 2015-05-21 11:51:51 +02:00 committed by Martin Dvorak
parent c25b180d06
commit e513faf5e7

View file

@ -1,18 +1,21 @@
# Maintainer: Ricardo Band <me@xengi.de>
# Maintainer: Christian Wieden <wiedenchr at gmail dot com
# Contributer: Ricardo Band <me at xengi dot de>
pkgname=hh
pkgver=1.2.1
pkgver=1.17
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')
makedepends=('git' 'readline' 'ncurses')
_pkgver=$(echo "$pkgver" | sed 's/.[0-9]*$//')
source=(https://github.com/dvorka/hstr/releases/download/$pkgver/$pkgname-$_pkgver-src.tgz)
md5sums=('a6b7ab128fff5604374166b488c7b8b7')
source=(https://github.com/dvorka/hstr/releases/download/$pkgver/$pkgname-$pkgver-src.tgz)
md5sums=('46336873fb23e7b59b54655f05b221d5')
build() {
cd "$srcdir/hstr"
sed -i -e "s#<ncursesw/curses.h>#<curses.h>#g" src/include/hstr_curses.h
sed -i -e "s#<ncursesw/curses.h>#<curses.h>#g" src/hstr.c
./configure --prefix=/usr
make
}