blob: 97e94291cb7c23a789835910636d65ab925e7234 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2009-2015 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=mpc
10PKG_VERSION:=1.3.1
11
12PKG_SOURCE_URL:=@GNU/mpc/
13PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14PKG_HASH:=ab642492f5cf882b74aa0cb730cd410a81edcdbec895183ce930e706c1c759b8
15
16HOST_BUILD_PARALLEL:=1
17
18include $(INCLUDE_DIR)/host-build.mk
19
20unexport CFLAGS
21
22HOST_CONFIGURE_ARGS += \
23 --enable-static \
24 --disable-shared \
25 --with-mpfr=$(STAGING_DIR_HOST) \
26 --with-gmp=$(STAGING_DIR_HOST)
27
28define Host/Uninstall
29 -$(call Host/Compile/Default,uninstall)
30endef
31
32$(eval $(call HostBuild))