summaryrefslogtreecommitdiff
path: root/package/libs/libjson-c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-07-01 15:36:12 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-07-01 15:36:12 +0000
commit4a86a26650a77b8d9bf89eb12a399ac05e074540 (patch)
treed2354d9d76a1394577e90fc3f2883fc1338ec014 /package/libs/libjson-c
parent96f8c15a36dbdde14df63e2e7dfea7a819716428 (diff)
downloadmtk-20170518-4a86a26650a77b8d9bf89eb12a399ac05e074540.zip
mtk-20170518-4a86a26650a77b8d9bf89eb12a399ac05e074540.tar.gz
mtk-20170518-4a86a26650a77b8d9bf89eb12a399ac05e074540.tar.bz2
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
Diffstat (limited to 'package/libs/libjson-c')
-rw-r--r--package/libs/libjson-c/Makefile27
1 files changed, 24 insertions, 3 deletions
diff --git a/package/libs/libjson-c/Makefile b/package/libs/libjson-c/Makefile
index cc82df4..3a8a41b 100644
--- a/package/libs/libjson-c/Makefile
+++ b/package/libs/libjson-c/Makefile
@@ -27,30 +27,51 @@ include $(INCLUDE_DIR)/package.mk
TARGET_CFLAGS += $(FPIC)
-define Package/libjson
+define Package/libjson-c
SECTION:=libs
CATEGORY:=Libraries
TITLE:=javascript object notation
URL:=http://oss.metaparadigm.com/json-c/
endef
-define Package/libjson/description
+define Package/libjson-c/description
This package contains a library for javascript object notation backends.
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
$(INSTALL_DIR) $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/include/json $(1)/usr/include/
$(CP) $(PKG_INSTALL_DIR)/usr/include/json-c $(1)/usr/include/
$(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/
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/json-c.pc $(1)/usr/lib/pkgconfig/
endef
-define Package/libjson/install
+define Package/libjson-c/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson-c.so.* $(1)/usr/lib/
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))