Makefile 663 B

123456789101112131415161718192021222324252627
  1. #
  2. # Copyright (C) 2016 LEDE project
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=libressl
  9. PKG_VERSION:=2.5.0
  10. PKG_HASH:=8652bf6b55ab51fb37b686a3f604a2643e0e8fde2c56e6a936027d12afda6eae
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=http://mirror.ox.ac.uk/pub/OpenBSD/LibreSSL \
  14. http://ftp.jaist.ac.jp/pub/OpenBSD/LibreSSL \
  15. http://ftp.openbsd.org/pub/OpenBSD/LibreSSL
  16. HOST_BUILD_PARALLEL:=1
  17. include $(INCLUDE_DIR)/host-build.mk
  18. HOST_CONFIGURE_ARGS += --disable-shared
  19. HOST_CFLAGS += $(FPIC)
  20. $(eval $(call HostBuild))