04ac296a3b
Switch to a non-redirect download URL to fix: http://autobuild.buildroot.net/results/ec3/ec340fffa6eebb18a0746097419359b44c557a90/ Thanks go to Paul Bakker for the quick response! Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
605 B
Makefile
22 lines
605 B
Makefile
################################################################################
|
|
#
|
|
# polarssl
|
|
#
|
|
################################################################################
|
|
|
|
POLARSSL_SITE = https://polarssl.org/code/releases
|
|
POLARSSL_VERSION = 1.2.8
|
|
POLARSSL_SOURCE = polarssl-$(POLARSSL_VERSION)-gpl.tgz
|
|
POLARSSL_CONF_OPT = \
|
|
-DUSE_SHARED_POLARSSL_LIBRARY=ON \
|
|
-DUSE_STATIC_POLARSSL_LIBRARY=ON \
|
|
-DBUILD_TESTS=OFF \
|
|
-DBUILD_PROGRAMS=$(if $(BR2_PACKAGE_POLARSSL_PROGRAMS),ON,OFF)
|
|
|
|
POLARSSL_INSTALL_STAGING = YES
|
|
POLARSSL_LICENSE = GPLv2
|
|
POLARSSL_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(cmake-package))
|
|
|