diff options
| author | Sergey V. Lobanov | 2022-02-05 09:41:44 +0000 |
|---|---|---|
| committer | Christian Lamparter | 2022-02-26 18:52:41 +0000 |
| commit | 64d159cdadadb6c23b9a62fc96dba27a6ed95893 (patch) | |
| tree | d9f26dc044790d132b214cd63016f3da94d5f51c | |
| parent | d52bf5a424581996bb40dd6ae7c3e5db43542680 (diff) | |
| download | openwrt-64d159cdadadb6c23b9a62fc96dba27a6ed95893.tar.gz | |
argp-standalone: add host-compile ability
This patch adds host-compile ability to argp-standalone for build
hosts without glibc and argp lib, e.g. MacOS.
iucode-tool/host can not be built on MacOS due to lack of argp.
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
| -rw-r--r-- | package/libs/argp-standalone/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/package/libs/argp-standalone/Makefile b/package/libs/argp-standalone/Makefile index 8fad739d85..21b154f29d 100644 --- a/package/libs/argp-standalone/Makefile +++ b/package/libs/argp-standalone/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=argp-standalone PKG_VERSION:=1.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.lysator.liu.se/~nisse/misc/ @@ -20,6 +20,7 @@ PKG_LICENSE:=LGPL-2.1 PKG_LICENSE:=Makefile.am include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk define Package/argp-standalone SECTION:=libs @@ -45,4 +46,14 @@ define Build/InstallDev $(1)/usr/lib/ endef +define Host/Install + $(INSTALL_DIR) $(1)/include + $(CP) $(HOST_BUILD_DIR)/argp.h \ + $(1)/include/ + $(INSTALL_DIR) $(1)/lib + $(CP) $(HOST_BUILD_DIR)/libargp.a \ + $(1)/lib/ +endef + $(eval $(call BuildPackage,argp-standalone)) +$(eval $(call HostBuild)) |