diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-23 08:53:25 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-23 08:53:25 +0100 |
commit | b4f81e0cb828a288880f372c03d7155dff62d470 (patch) | |
tree | cdc25e6e526c27ecfcee0c94588ac7e43b56f42f /package/httping | |
parent | 0b78aa7913edd71659f8055f52250dff08031fe1 (diff) |
httping: fix install step
Diffstat (limited to 'package/httping')
-rw-r--r-- | package/httping/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/httping/Makefile b/package/httping/Makefile index 4127af873..60c2ab6cf 100644 --- a/package/httping/Makefile +++ b/package/httping/Makefile @@ -9,7 +9,7 @@ PKG_RELEASE:= 1 PKG_HASH:= 8c081daae31cad586bce7742bd721c2a741d7ce0687fb3a12cafd389b90bf79c PKG_DESCR:= like ping but for http-requests PKG_SECTION:= net/http -PKG_DEPENDS:= libressl +PKG_DEPENDS:= libressl ca-certificates PKG_BUILDDEP:= cmake-host libressl PKG_NEEDS:= intl PKG_SITES:= https://github.com/folkertvanheusden/HTTPing/archive/refs/tags/ @@ -22,9 +22,10 @@ include ${ADK_TOPDIR}/mk/package.mk $(eval $(call PKG_template,HTTPING,httping,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) CONFIG_STYLE:= cmake +INSTALL_STYLE:= manual httping-install: ${INSTALL_DIR} ${IDIR_HTTPING}/usr/bin - ${INSTALL_BIN} ${WRKINST}/usr/bin/httping ${IDIR_HTTPING}/usr/bin/ + ${INSTALL_BIN} ${WRKBUILD}/httping ${IDIR_HTTPING}/usr/bin/ include ${ADK_TOPDIR}/mk/pkg-bottom.mk |