# # Copyright (C) 2020 Sebastian Kemper # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=json-glib PKG_VERSION:=1.6.6 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNOME/json-glib/1.6 PKG_HASH:=96ec98be7a91f6dde33636720e3da2ff6ecbb90e76ccaa49497f31a6855a490e PKG_INSTALL:=1 PKG_LICENSE:=LGPL-2.1-or-later PKG_LICENSE_FILES:=COPYING PKG_MAINTAINER:=Sebastian Kemper PKG_BUILD_DEPENDS:=glib2/host OPENWRT_VERBOSE:=c include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/nls.mk include $(INCLUDE_DIR)/meson.mk define Package/json-glib SECTION:=libs CATEGORY:=Libraries TITLE:=JSON GLib Library URL:=https://wiki.gnome.org/Projects/JsonGlib DEPENDS:=+glib2 ABI_VERSION:=0 endef define Package/json-glib/description JSON-GLib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format described by RFC 4627. endef MESON_ARGS += \ -Dgtk_doc=disabled \ -Dintrospection=disabled \ -Dman=false \ -Dtests=false define Build/Prepare $(call Build/Prepare/Default) ifeq ($(QUILT),) $(SED) '/error=format=2/d' $(PKG_BUILD_DIR)/meson.build endif endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include/json-glib-1.0/json-glib $(INSTALL_DATA) \ $(PKG_INSTALL_DIR)/usr/include/json-glib-1.0/json-glib/*.h \ $(1)/usr/include/json-glib-1.0/json-glib $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson-glib-1.0.so* \ $(1)/usr/lib $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/json-glib-1.0.pc \ $(1)/usr/lib/pkgconfig endef define Package/json-glib/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson-glib-1.0.so.$(ABI_VERSION)* \ $(1)/usr/lib endef $(eval $(call BuildPackage,json-glib))