mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-09 08:08:27 +00:00
libjson-c: rename the libjson binary package to libjson-c, add a new libjson package with the compatibility library (to deal with the rename)
SVN-Revision: 37119
This commit is contained in:
parent
96f8c15a36
commit
4a86a26650
@ -27,30 +27,51 @@ include $(INCLUDE_DIR)/package.mk
|
|||||||
|
|
||||||
TARGET_CFLAGS += $(FPIC)
|
TARGET_CFLAGS += $(FPIC)
|
||||||
|
|
||||||
define Package/libjson
|
define Package/libjson-c
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE:=javascript object notation
|
TITLE:=javascript object notation
|
||||||
URL:=http://oss.metaparadigm.com/json-c/
|
URL:=http://oss.metaparadigm.com/json-c/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libjson/description
|
define Package/libjson-c/description
|
||||||
This package contains a library for javascript object notation backends.
|
This package contains a library for javascript object notation backends.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libjson
|
||||||
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
DEPENDS:=+libjson-c
|
||||||
|
TITLE:=javascript object notation (compat library)
|
||||||
|
URL:=http://oss.metaparadigm.com/json-c/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/libjson/description
|
||||||
|
This package contains a compatibility library for packages that have not
|
||||||
|
been adapted to the json-c library rename yet
|
||||||
|
endef
|
||||||
|
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/json $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/json $(1)/usr/include/
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/json-c $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/json-c $(1)/usr/include/
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson.{a,so*} $(1)/usr/lib/
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson-c.{a,so*} $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson-c.{a,so*} $(1)/usr/lib/
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/json-c.pc $(1)/usr/lib/pkgconfig/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/json-c.pc $(1)/usr/lib/pkgconfig/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libjson/install
|
define Package/libjson-c/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson-c.so.* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson-c.so.* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libjson/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson.so.* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,libjson-c))
|
||||||
$(eval $(call BuildPackage,libjson))
|
$(eval $(call BuildPackage,libjson))
|
||||||
|
@ -33,13 +33,13 @@ define Package/libblobmsg-json
|
|||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE:=blobmsg <-> json conversion library
|
TITLE:=blobmsg <-> json conversion library
|
||||||
DEPENDS:=+libjson +libubox
|
DEPENDS:=+libjson-c +libubox
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/jshn
|
define Package/jshn
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
CATEGORY:=Utilities
|
CATEGORY:=Utilities
|
||||||
DEPENDS:=+libjson
|
DEPENDS:=+libjson-c
|
||||||
TITLE:=JSON SHell Notation
|
TITLE:=JSON SHell Notation
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user