hstr: update to 2.0.0.

This commit is contained in:
cr6git 2018-10-04 14:11:35 +02:00 committed by GitHub
parent 553441a262
commit 07297c6db4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 12 deletions

View file

@ -1,10 +1,12 @@
--- configure.ac.orig 2017-09-30 10:01:44.000000000 +0000 --- configure.ac.orig 2018-10-04 11:22:39.253662649 +0200
+++ configure.ac 2017-10-05 07:45:00.636956940 +0000 +++ configure.ac 2018-10-04 11:23:27.646660149 +0200
@@ -106,7 +106,4 @@ @@ -116,9 +116,6 @@
AC_FUNC_MALLOC AC_FUNC_MALLOC
AC_CHECK_FUNCS([memset strdup strstr]) AC_CHECK_FUNCS([memset strdup strstr])
-# Bash@Ubuntu@Windows -# Bash@Ubuntu@Windows
-AC_CHECK_FILE(/tmp/hh-ms-wsl,AC_DEFINE(__MS_WSL__), []) -AC_CHECK_FILE(/tmp/hstr-ms-wsl,AC_DEFINE(__MS_WSL__), [])
- -
AC_OUTPUT # Bash CLI autocomplete
AC_ARG_WITH([bash-completion-dir],
AS_HELP_STRING([--with-bash-completion-dir[=PATH]],

View file

@ -1,7 +1,8 @@
# Template file for 'hstr' # Template file for 'hstr'
pkgname=hstr pkgname=hstr
version=1.27 version=2.0.0
revision=1 revision=1
wrksrc="hstr"
build_style=gnu-configure build_style=gnu-configure
hostmakedepends="automake pkg-config" hostmakedepends="automake pkg-config"
makedepends="readline-devel" makedepends="readline-devel"
@ -10,8 +11,8 @@ maintainer="Diogo Leal <diogo@diogoleal.com>"
license="Apache-2.0" license="Apache-2.0"
homepage="https://github.com/dvorka/hstr" homepage="https://github.com/dvorka/hstr"
changelog="https://raw.githubusercontent.com/dvorka/hstr/master/Changelog" changelog="https://raw.githubusercontent.com/dvorka/hstr/master/Changelog"
distfiles="https://github.com/dvorka/hstr/archive/${version}.tar.gz" distfiles="${homepage}/releases/download/${version%.*}/hstr-${version}-tarball.tgz"
checksum=b13b517f91b80d4e75d162b2045ca2563d852051f7f189270ed6ceecaf735dfd checksum=9844587d4e91daa8a78eeeac13e995995fff36616fda5f374da7301c9bce15e4
pre_configure() { pre_configure() {
grep -rli '#include <ncursesw/curses.h>' src | xargs -i@ sed -i 's|ncursesw/curses.h|curses.h|g' @ grep -rli '#include <ncursesw/curses.h>' src | xargs -i@ sed -i 's|ncursesw/curses.h|curses.h|g' @
@ -19,7 +20,3 @@ pre_configure() {
automake --force-missing --add-missing automake --force-missing --add-missing
autoconf autoconf
} }
post_install() {
vlicense LICENSE
}