9b5b683 multipart-parser: properly handle parts with trailing CR Fixes: #6282 Signed-off-by: Jo-Philipp Wich <jo@mein.io>
75 lines
2 KiB
Makefile
75 lines
2 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:=2023-03-15
|
|
PKG_SOURCE_VERSION:=9b5b683fbb2bb0010aa031d620d0ab8105516757
|
|
PKG_MIRROR_HASH:=82698fcf1ac47b14ea44b26eccfb11596b6eda4e9f68d016405ebd8a66dc816e
|
|
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 CONFIG_PACKAGE_liblucihttp-ucode
|
|
|
|
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
|
|
|
|
define Package/liblucihttp-ucode
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+liblucihttp +libucode
|
|
TITLE:=ucode 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_UCODE=$(if $(CONFIG_PACKAGE_liblucihttp-ucode),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
|
|
|
|
define Package/liblucihttp-ucode/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ucode
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ucode/lucihttp.so $(1)/usr/lib/ucode/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,liblucihttp))
|
|
$(eval $(call BuildPackage,liblucihttp-lua))
|
|
$(eval $(call BuildPackage,liblucihttp-ucode))
|