diff options
Diffstat (limited to 'package/libs/libjson-c/.svn')
-rw-r--r-- | package/libs/libjson-c/.svn/entries | 62 | ||||
-rw-r--r-- | package/libs/libjson-c/.svn/text-base/Makefile.svn-base | 55 |
2 files changed, 117 insertions, 0 deletions
diff --git a/package/libs/libjson-c/.svn/entries b/package/libs/libjson-c/.svn/entries new file mode 100644 index 0000000..6278b29 --- /dev/null +++ b/package/libs/libjson-c/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/package/libs/libjson-c +svn://svn.openwrt.org/openwrt + + + +2012-10-19T15:34:28.915431Z +33861 +hcg + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +Makefile +file + + + + +2013-03-17T12:13:08.000000Z +d79418a68af4671f21cc4690bab76c24 +2012-10-19T15:34:28.915431Z +33861 +hcg + + + + + + + + + + + + + + + + + + + + + +1333 + diff --git a/package/libs/libjson-c/.svn/text-base/Makefile.svn-base b/package/libs/libjson-c/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..5dd83f2 --- /dev/null +++ b/package/libs/libjson-c/.svn/text-base/Makefile.svn-base @@ -0,0 +1,55 @@ +# +# Copyright (C) 2006-2010 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=json-c +PKG_VERSION:=0.9 +PKG_RELEASE:=2 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://oss.metaparadigm.com/json-c/ +PKG_MD5SUM:=3a13d264528dcbaf3931b0cede24abae + +PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=COPYING + +PKG_FIXUP:=autoreconf +PKG_INSTALL:=1 + +PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> + +include $(INCLUDE_DIR)/package.mk + +TARGET_CFLAGS += $(FPIC) + +define Package/libjson + SECTION:=libs + CATEGORY:=Libraries + TITLE:=javascript object notation + URL:=http://oss.metaparadigm.com/json-c/ +endef + +define Package/libjson/description + This package contains a library for javascript object notation backends. +endef + +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/include/json $(1)/usr/include/ + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libjson.{a,so*} $(1)/usr/lib/ + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/json.pc $(1)/usr/lib/pkgconfig/ +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)) |