OpenWrt – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # |
2 | # Copyright (C) 2014 OpenWrt.org |
||
3 | # |
||
4 | # This is free software, licengengetopt under the GNU General Public License v2. |
||
5 | # See /LICENSE for more information. |
||
6 | # |
||
7 | include $(TOPDIR)/rules.mk |
||
8 | |||
9 | PKG_NAME:=gengetopt |
||
10 | PKG_VERSION:=2.22.6 |
||
11 | |||
12 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
||
13 | PKG_SOURCE_URL:=@GNU/$(PKG_NAME) |
||
14 | PKG_HASH:=30b05a88604d71ef2a42a2ef26cd26df242b41f5b011ad03083143a31d9b01f7 |
||
15 | |||
16 | HOST_FIXUP := autoreconf |
||
17 | |||
18 | HOST_BUILD_PARALLEL:=1 |
||
19 | |||
20 | include $(INCLUDE_DIR)/host-build.mk |
||
21 | |||
22 | define Host/Install |
||
23 | $(INSTALL_BIN) $(HOST_BUILD_DIR)/src/gengetopt $(STAGING_DIR_HOST)/bin/ |
||
24 | endef |
||
25 | |||
26 | define Host/Clean |
||
27 | rm -f $(STAGING_DIR_HOST)/bin/gengetopt |
||
28 | endef |
||
29 | |||
30 | $(eval $(call HostBuild)) |