tools/flex: update to 2.6.1
[openwrt.git] / tools / flex / Makefile
1
2 # Copyright (C) 2008-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
9 PKG_NAME:=flex
10 PKG_VERSION:=2.6.1
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
13 PKG_SOURCE_URL:=https://github.com/westes/flex/releases/download/v$(PKG_VERSION)/
14 PKG_MD5SUM:=cd3c86290fc2676a641aefafeb10848a
15
16 HOST_BUILD_PARALLEL:=1
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 HOST_CONFIGURE_ARGS += --disable-shared
21
22 define Host/Clean
23         -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
24         $(call Host/Clean/Default)
25 endef
26
27 $(eval $(call HostBuild))