2018-09-24 11:01:06 +08:00
|
|
|
#
|
2015-11-03 20:00:04 +08:00
|
|
|
# Copyright (C) 2008-2015 OpenWrt.org
|
2008-02-06 03:39:57 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=bison
|
2018-09-24 11:01:06 +08:00
|
|
|
PKG_VERSION:=3.0.5
|
2008-02-06 03:39:57 +08:00
|
|
|
|
2013-02-28 08:52:34 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2009-05-31 18:07:35 +08:00
|
|
|
PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
|
2018-09-24 11:01:06 +08:00
|
|
|
PKG_HASH:=075cef2e814642e30e10e8155e93022e4a91ca38a65aa1d5467d4e969f97f338
|
2008-02-06 03:39:57 +08:00
|
|
|
|
2012-09-15 22:18:04 +08:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
2008-02-06 03:39:57 +08:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Clean
|
2009-05-09 04:44:47 +08:00
|
|
|
-$(MAKE) -C $(HOST_BUILD_DIR) uninstall
|
2009-02-22 12:37:20 +08:00
|
|
|
$(call Host/Clean/Default)
|
2008-02-06 03:39:57 +08:00
|
|
|
endef
|
|
|
|
|
2015-09-27 05:10:48 +08:00
|
|
|
define Host/Install
|
|
|
|
$(call Host/Install/Default)
|
|
|
|
$(INSTALL_BIN) ./scripts/yacc $(STAGING_DIR_HOST)/bin/yacc
|
|
|
|
endef
|
|
|
|
|
2008-02-06 03:39:57 +08:00
|
|
|
$(eval $(call HostBuild))
|