summaryrefslogtreecommitdiffstats
path: root/src/polarssl.mk
diff options
context:
space:
mode:
authorAndre Heinecke <aheinecke@intevation.de>2014-03-20 12:13:19 (GMT)
committerAndre Heinecke <aheinecke@intevation.de>2014-03-20 12:13:19 (GMT)
commit58b7861fe77fca28e9d2668bb19cf5da017781b8 (patch)
tree502c36cbad838a33e7e134c3ebcbe00e436dffd9 /src/polarssl.mk
parent9582b46246c115137e3a75e670ba195550929f5b (diff)
downloadmxe-58b7861fe77fca28e9d2668bb19cf5da017781b8.zip
mxe-58b7861fe77fca28e9d2668bb19cf5da017781b8.tar.gz
mxe-58b7861fe77fca28e9d2668bb19cf5da017781b8.tar.bz2
Add package polarssl
Diffstat (limited to 'src/polarssl.mk')
-rw-r--r--src/polarssl.mk28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/polarssl.mk b/src/polarssl.mk
new file mode 100644
index 0000000..6d4ef23
--- /dev/null
+++ b/src/polarssl.mk
@@ -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