OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
3 office 1 #
1 office 2 # Copyright (C) 2008-2015 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:=bison
3 office 10 PKG_VERSION:=3.0.4
1 office 11  
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
13 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
3 office 14 PKG_HASH:=a72428c7917bdf9fa93cb8181c971b6e22834125848cf1d03ce10b1bb0716fe1
1 office 15  
16 HOST_BUILD_PARALLEL:=1
17  
18 include $(INCLUDE_DIR)/host-build.mk
19  
20 define Host/Clean
21 -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
22 $(call Host/Clean/Default)
23 endef
24  
25 define Host/Install
26 $(call Host/Install/Default)
27 $(INSTALL_BIN) ./scripts/yacc $(STAGING_DIR_HOST)/bin/yacc
28 endef
29  
30 $(eval $(call HostBuild))