a34a17d src: allow overriding buffer size from cli in multipart tester 730a46f lib: fix potentially lost bytes in boundary parsing across buffer limits 8734af2 lib: add buffer tracing to multipart parser 913051b src: add file dump option to multipart test utility c419539 src: allow specifying custom buffer sizes in multipart testcases f6e0564 lib: fix handling of empty multipart fields Fixes: #2816 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=lucihttp
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://github.com/jow-/lucihttp.git
|
|
PKG_SOURCE_DATE:=2019-07-05
|
|
PKG_SOURCE_VERSION:=a34a17d501c0e23f0a91dd9d3e87697347c861ba
|
|
PKG_MIRROR_HASH:=f08b526515b4a654e5529457da9d0676696170846288c55863dba087417a0483
|
|
CMAKE_INSTALL:=1
|
|
|
|
PKG_LICENSE:=ISC
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
|
PKG_CONFIG_DEPENDS:=CONFIG_PACKAGE_liblucihttp-lua
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/liblucihttp
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=LuCI HTTP utility library
|
|
ABI_VERSION:=0
|
|
endef
|
|
|
|
define Package/liblucihttp-lua
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+liblucihttp +liblua
|
|
TITLE:=Lua binding for the LuCI HTTP utility library
|
|
endef
|
|
|
|
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include
|
|
|
|
CMAKE_OPTIONS = \
|
|
-DLUAPATH=/usr/lib/lua \
|
|
-DBUILD_LUA=$(if $(CONFIG_PACKAGE_liblucihttp-lua),ON,OFF) \
|
|
-DBUILD_TESTS=OFF
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/liblucihttp.so* $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
endef
|
|
|
|
define Package/liblucihttp/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/liblucihttp.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/liblucihttp-lua/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lua/lucihttp.so $(1)/usr/lib/lua/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,liblucihttp))
|
|
$(eval $(call BuildPackage,liblucihttp-lua))
|