Makefile 652 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Copyright (C) 2009-2016 OpenWrt.org
  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:=mpfr
  9. PKG_VERSION:=4.0.0
  10. PKG_CPE_ID:=cpe:/a:mpfr:gnu_mpfr
  11. PKG_SOURCE_URL:=http://www.mpfr.org/mpfr-$(PKG_VERSION) \
  12. @GNU/mpfr
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  14. PKG_HASH:=fbe2cd1418b321f5c899ce4f0f0f4e73f5ecc7d02145b0e1fd096f5c3afb8a1d
  15. HOST_BUILD_PARALLEL:=1
  16. HOST_FIXUP:=autoreconf
  17. include $(INCLUDE_DIR)/host-build.mk
  18. HOST_CONFIGURE_ARGS += \
  19. --enable-static \
  20. --disable-shared \
  21. --with-gmp=$(STAGING_DIR_HOST)
  22. $(eval $(call HostBuild))