Merge pull request #352 from AndreHeinecke/master

Add package polarssl
This commit is contained in:
Tony Theodore 2014-03-22 22:46:30 +11:00
commit 446bcac56b
2 changed files with 32 additions and 0 deletions

View File

@ -2043,6 +2043,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="package">poco</td>
<td class="website"><a href="http://pocoproject.org/">POCO C++ Libraries</a></td>
</tr>
<tr>
<td class="package">polarssl</td>
<td class="website"><a href="https://polarssl.org/">Polar SSL Library</a></td>
</tr>
<tr>
<td class="package">poppler</td>
<td class="website"><a href="http://poppler.freedesktop.org/">poppler</a></td>

28
src/polarssl.mk Normal file
View File

@ -0,0 +1,28 @@
# This file is part of MXE.
# See index.html for further information.
PKG := polarssl
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.3.4
$(PKG)_CHECKSUM := e43dc467e36ae2761ca2e4fa02c54f5771ee51a1
$(PKG)_SUBDIR := polarssl-$($(PKG)_VERSION)
$(PKG)_FILE := polarssl-$($(PKG)_VERSION)-gpl.tgz
$(PKG)_URL := https://polarssl.org/download/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
# Match lines like:
# <a href="/tech-updates/releases/polarssl-1.3.4-released">PolarSSL 1.3.4 released</a></br>
# On the releases page of polarssl for update
define $(PKG)_UPDATE
$(WGET) -q -O- https://polarssl.org/tech-updates/releases | \
$(SED) -n "s,.*releases/polarssl\-\([0-9]\.[0-9].[0-9]\)-released.*,\1,p" | \
head -1
endef
define $(PKG)_BUILD
mkdir '$(1)/build'
cd '$(1)/build' && cmake .. \
-DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)'
$(MAKE) -C '$(1)/build' -j '$(JOBS)' install
endef