Merge pull request #1214 from pavelvat/sparsehash

add package sparsehash
This commit is contained in:
Boris Nagaev 2016-02-11 22:15:38 +03:00
commit 9b9ae7084e
2 changed files with 30 additions and 0 deletions

View File

@ -2477,6 +2477,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="package">sox</td>
<td class="website"><a href="http://sox.sourceforge.net/">SoX</a></td>
</tr>
<tr>
<td class="package">sparsehash</td>
<td class="website"><a href="https://github.com/sparsehash/sparsehash">sparsehash</a></td>
</tr>
<tr>
<td class="package">speex</td>
<td class="website"><a href="http://www.speex.org/">Speex</a></td>

26
src/sparsehash.mk Normal file
View File

@ -0,0 +1,26 @@
# This file is part of MXE.
# See index.html for further information.
PKG := sparsehash
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.0.3
$(PKG)_CHECKSUM := 05e986a5c7327796dad742182b2d10805a8d4f511ad090da0490f146c1ff7a8c
$(PKG)_SUBDIR := $(PKG)-$(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := https://github.com/$(PKG)/$(PKG)/archive/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
$(call MXE_GET_GITHUB_TAGS, sparsehash/sparsehash, sparsehash-)
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_DOCS)
$(INSTALL) '$(1)/hashtable_test.exe' '$(PREFIX)/$(TARGET)/bin/test-sparsehash.exe'
$(TARGET)-strip '$(PREFIX)/$(TARGET)/bin/test-sparsehash.exe'
endef