0
0
mirror of https://github.com/openwrt/packages.git synced 2025-09-26 09:25:20 +00:00
Files
packages/libs/libsoup3/Makefile
W. Michael Petullo f54850c3fc libsoup3: update to 3.6.5
Upstream record of changes is available at
https://gitlab.gnome.org/GNOME/libsoup.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2025-06-01 21:48:05 +03:00

75 lines
1.7 KiB
Makefile

#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libsoup3
PKG_VERSION:=3.6.5
PKG_RELEASE:=1
PKG_SOURCE:=libsoup-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@GNOME/libsoup/$(basename $(PKG_VERSION))
PKG_HASH:=6891765aac3e949017945c3eaebd8cc8216df772456dc9f460976fbdb7ada234
PKG_BUILD_DIR:=$(BUILD_DIR)/libsoup-$(PKG_VERSION)
PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
PKG_LICENSE:=LGPL-2.1-or-later
PKG_LICENSE_FILES:=COPYING
PKG_CPE_ID:=cpe:/a:gnome:libsoup
PKG_BUILD_DEPENDS:=glib2/host
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
include $(INCLUDE_DIR)/meson.mk
define Package/libsoup3
SECTION:=libs
CATEGORY:=Libraries
TITLE:=libsoup3
URL:=https://wiki.gnome.org/Projects/libsoup
DEPENDS:=+glib2 +libxml2 +libgnutls +libsqlite3 +libpsl +libnghttp2
endef
MESON_ARGS += \
-Dgssapi=disabled \
-Dntlm=disabled \
-Dbrotli=disabled \
-Dtls_check=false \
-Dintrospection=disabled \
-Dvapi=disabled \
-Dtests=false \
-Dinstalled_tests=false \
-Dsysprof=disabled
define package/libsoup3/decription
Libsoup is an HTTP library implementation in C
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/libsoup-3.0/libsoup}
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libsoup-3.0.so* \
$(1)/usr/lib/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
$(1)/usr/lib/pkgconfig/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/include/libsoup-3.0/libsoup/*.h \
$(1)/usr/include/libsoup-3.0/libsoup/
endef
define Package/libsoup3/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libsoup-3.0.* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,libsoup3))