Skip to content

Commit

Permalink
Merge pull request mxe#1752 from stloeffler/master
Browse files Browse the repository at this point in the history
Update hunspell to 1.6.1
  • Loading branch information
starius authored May 18, 2017
2 parents ef7579f + 7d91105 commit 3384f5a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 19 deletions.
12 changes: 7 additions & 5 deletions src/hunspell-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <hunspell.hxx>

int main(int argc, char *argv[])
Expand All @@ -19,18 +21,18 @@ int main(int argc, char *argv[])
aff.close();
Hunspell h("hunspell-test.aff", "hunspell-test.dic");

if (h.spell("Hello") == 0)
if (h.spell(std::string("Hello")) == 0)
{
std::cerr << "Error: hunspell marked correct word as wrong" << std::endl;
}
if (h.spell("wrld") != 0)
if (h.spell(std::string("wrld")) != 0)
{
std::cerr << "Error: hunspell marked wrong word as correct" << std::endl;
}

char ** result;
int n = h.suggest(&result, "ell");
for (int i = 0; i < n; i++) std::cout << result[i];
std::vector<std::string> result;
result = h.suggest(std::string("ell"));
for (unsigned int i = 0; i < result.size(); i++) std::cout << result[i];

return 0;
}
22 changes: 8 additions & 14 deletions src/hunspell.mk
Original file line number Diff line number Diff line change
@@ -1,30 +1,24 @@
# This file is part of MXE. See LICENSE.md for licensing information.

PKG := hunspell
$(PKG)_WEBSITE := https://hunspell.sourceforge.io/
$(PKG)_WEBSITE := https://hunspell.github.io/
$(PKG)_DESCR := Hunspell
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.3
$(PKG)_CHECKSUM := a7b2c0de0e2ce17426821dc1ac8eb115029959b3ada9d80a81739fa19373246c
$(PKG)_SUBDIR := hunspell-$($(PKG)_VERSION)
$(PKG)_FILE := hunspell-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/hunspell/Hunspell/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_VERSION := 1.6.1
$(PKG)_CHECKSUM := 30f593733c50b794016bb03d31fd2a2071e4610c6fa4708e33edad2335102c49
$(PKG)_GH_CONF := hunspell/hunspell, v
$(PKG)_DEPS := gcc gettext libiconv pthreads readline

define $(PKG)_UPDATE
$(WGET) -q -O- 'https://sourceforge.net/projects/hunspell/files/Hunspell/' | \
$(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
head -1
endef

define $(PKG)_BUILD
# Note: the configure file doesn't pick up pdcurses, so "ui" is disabled
cd '$(1)' && ./configure \
cd '$(SOURCE_DIR)' && autoreconf -fi
cd '$(BUILD_DIR)' && '$(SOURCE_DIR)/configure' \
$(MXE_CONFIGURE_OPTS) \
--with-warnings \
--without-ui \
--with-readline
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' $(MXE_DISABLE_CRUFT)
$(MAKE) -C '$(BUILD_DIR)' -j 1 install $(MXE_DISABLE_CRUFT)

# Test
'$(TARGET)-g++' \
Expand Down

0 comments on commit 3384f5a

Please sign in to comment.