blob: 1ce20fb49cb3987b85e1b9af87288b99f8330ba1 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2009-2013 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:=isl
10PKG_VERSION:=0.26
11
12PKG_SOURCE_URL:=https://libisl.sourceforge.io/
13PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14PKG_HASH:=b10473024cbf17d7db85323121eff0e50f03de14342a03738b4d384b587ce212
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-gmp-prefix=$(STAGING_DIR_HOST)
26
27define Host/Uninstall
28 -$(call Host/Compile/Default,uninstall)
29endef
30
31$(eval $(call HostBuild))