Mercurial > hg > mxe-octave-anirudha
view src/hunspell.mk @ 3236:9d6566d9944e default tip
Added tag GSoC_end for changeset f53543bd5dd6
author | Anirudha Bose <ani07nov@gmail.com> |
---|---|
date | Tue, 24 Sep 2013 16:13:01 +0530 |
parents | 5ef49fb3299d |
children |
line wrap: on
line source
# This file is part of MXE. # See index.html for further information. PKG := hunspell $(PKG)_IGNORE := $(PKG)_CHECKSUM := 902c76d2b55a22610e2227abc4fd26cbe606a51c $(PKG)_SUBDIR := hunspell-$($(PKG)_VERSION) $(PKG)_FILE := hunspell-$($(PKG)_VERSION).tar.gz $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/hunspell/Hunspell/$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := libiconv gettext readline pthreads define $(PKG)_UPDATE $(WGET) -q -O- 'http://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 \ $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \ $(ENABLE_SHARED_OR_STATIC) \ --with-warnings \ --without-ui \ --with-readline \ --prefix='$(HOST_PREFIX)' $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= # Test '$(MXE_CXX)' \ -W -Wall -Werror -ansi -pedantic \ '$(2).cpp' -o '$(HOST_BINDIR)/test-hunspell.exe' \ `'$(MXE_PKG_CONFIG)' hunspell --cflags --libs` endef