kiss-repo

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

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:
Ahunspell/build | 15+++++++++++++++
Ahunspell/checksums | 1+
Ahunspell/sources | 1+
Ahunspell/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