mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-15 09:39:06 +01:00
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
b3ee1209a3d0 uclient-http: reset fd to -1 after close in disconnect 9c2ad269c42b uclient-http: fix seq field check to use correct field 80c9bd29c233 uclient-http: fix hang on HTTP to HTTPS redirect 931bbfeb2c92 ucode: fix memory leak when using ssl context Fixes: https://github.com/openwrt/uclient/issues/11 Fixes: https://github.com/openwrt/uclient/issues/13 Signed-off-by: Felix Fietkau <nbd@nbd.name>
69 lines
1.7 KiB
Makefile
69 lines
1.7 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uclient
|
|
PKG_RELEASE=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/uclient.git
|
|
PKG_MIRROR_HASH:=f79f20eb45e1a0342dc9746f4c4b618cac3ed20e6868640eed6b564cb06a22d7
|
|
PKG_SOURCE_DATE:=2026-01-31
|
|
PKG_SOURCE_VERSION:=931bbfeb2c92ecaa8ca2262b9bef27df8614ffb9
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_BUILD_DEPENDS:=ustream-ssl
|
|
|
|
PKG_LICENSE:=ISC
|
|
PKG_LICENSE_FILES:=
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
PKG_CONFIG_DEPENDS := CONFIG_PACKAGE_ucode-mod-uclient
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libuclient
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=HTTP/1.1 client library
|
|
ABI_VERSION:=20201210
|
|
DEPENDS:=+libubox
|
|
endef
|
|
|
|
define Package/uclient-fetch
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Tiny wget replacement using libuclient
|
|
ALTERNATIVES:=200:/usr/bin/wget:/bin/uclient-fetch
|
|
DEFAULT_VARIANT:=1
|
|
PROVIDES:=@wget-any
|
|
DEPENDS:=+libuclient
|
|
endef
|
|
|
|
define Package/ucode-mod-uclient
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=ucode uclient module
|
|
DEPENDS:=+libucode +libuclient
|
|
endef
|
|
|
|
CMAKE_OPTIONS += \
|
|
-DBUILD_UCODE=$(if $(CONFIG_PACKAGE_ucode-mod-uclient),ON,OFF)
|
|
|
|
define Package/libuclient/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libuclient.so $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/uclient-fetch/install
|
|
$(INSTALL_DIR) $(1)/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/uclient-fetch $(1)/bin/
|
|
endef
|
|
|
|
define Package/ucode-mod-uclient/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ucode
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/ucode/*.so $(1)/usr/lib/ucode
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libuclient))
|
|
$(eval $(call BuildPackage,uclient-fetch))
|
|
$(eval $(call BuildPackage,ucode-mod-uclient))
|