mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-10 17:18:35 +08:00
Update PKGBUILD to latest version
Updatet version, md5sum. Add sed commands in build to incorporate ncurses structure under arch.
This commit is contained in:
parent
c25b180d06
commit
e513faf5e7
1 changed files with 8 additions and 5 deletions
13
PKGBUILD
13
PKGBUILD
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue