commit 9c71614a3f8312847b63bc8dddae9afc86ee6f56 parent 7e041de327186b79fa678f9916f2149512f7ae1b Author: aabacchus <bvnfuller@gmail.com> Date: Mon, 5 Apr 2021 21:04:52 +0100 hunspell: new package at 1.7.0 Diffstat:
A | hunspell/build | | | 15 | +++++++++++++++ |
A | hunspell/checksums | | | 1 | + |
A | hunspell/sources | | | 1 | + |
A | hunspell/version | | | 1 | + |
4 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/hunspell/build b/hunspell/build @@ -0,0 +1,15 @@ +#!/bin/sh -e + +# hunspell recommends using autoreconf +# autoreconf pulls autopoint, which does gettext stuff (not supported by KISS) +# so we just run each bit it would do without autopoint +libtoolize +aclocal --force -I m4 +autoconf -f +autoheader -f +automake -af + +./configure \ + --prefix=/usr +make +make DESTDIR="$1" install diff --git a/hunspell/checksums b/hunspell/checksums @@ -0,0 +1 @@ +bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a diff --git a/hunspell/sources b/hunspell/sources @@ -0,0 +1 @@ +https://github.com/hunspell/hunspell/archive/refs/tags/v1.7.0.tar.gz diff --git a/hunspell/version b/hunspell/version @@ -0,0 +1 @@ +1.7.0 1