diff options
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 |